Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ on:
required: false
type: string
default: 'main'
upload_to_s3:
description: 'Whether to upload the built artifacts to S3. If false, the artifacts will only be uploaded as workflow artifacts.'
required: false
type: boolean
default: true
use_dev:
description: 'Use the "dev" branch of the shared-actions repo'
required: false
Expand All @@ -38,6 +43,7 @@ jobs:
project_name: ${{ inputs.project_name }}
platform_list: ${{ inputs.platform_list }}
vanagon_branch: ${{ inputs.vanagon_branch }}
upload_to_s3: ${{ inputs.upload_to_s3 }}
secrets: inherit
build_dev:
if: ${{ github.event.inputs.use_dev == 'true' }}
Expand All @@ -47,4 +53,5 @@ jobs:
project_name: ${{ inputs.project_name }}
platform_list: ${{ inputs.platform_list }}
vanagon_branch: ${{ inputs.vanagon_branch }}
upload_to_s3: ${{ inputs.upload_to_s3 }}
secrets: inherit