diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index cd99e368..34103757 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 @@ -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' }} @@ -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