forked from bcgov/supreme-court-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added permissions to write to sarif file
- Loading branch information
Ronaldo Macapobre
committed
Aug 20, 2024
1 parent
4a1f273
commit 268ed6c
Showing
2 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: Publish Infra | ||
|
||
on: | ||
# PR targeting master is created or new commits are pushed | ||
push: | ||
branches: | ||
- master | ||
paths: | ||
- "infrastructure/**" | ||
|
||
# Manual trigger via GH Actions UI | ||
workflow_dispatch: | ||
inputs: | ||
environment: | ||
description: "Select target environment" | ||
required: true | ||
default: "dev" | ||
type: choice | ||
options: | ||
- dev | ||
- test | ||
- prod | ||
|
||
jobs: | ||
deploy: | ||
uses: ./.github/workflows/aws-template-terraform.yml | ||
with: | ||
CONTEXT_FOLDER: "./infrastructure/cloud/environments/${{ inputs.environment }}" | ||
CHANGE_FOLDER_NAME: environments/${{ inputs.environment }} | ||
ENVIRONMENT_NAME: ${{ inputs.environment }} | ||
TEST_BUCKET_NAME: jasper-test-bucket | ||
secrets: inherit |