Skip to content

Commit 4cdbcb9

Browse files
chore: Update IS_RC default value to 'true' in ecr_sagemaker_publish workflow
1 parent 144cfa9 commit 4cdbcb9

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/ecr_sagemaker_publish.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -28,16 +28,15 @@ jobs:
2828
AWS_REGION: us-east-1
2929
AWS_CI_ROLE__PROD: ${{ secrets.AWS_CI_ROLE__PROD }}
3030
WORKING_DIR: "./"
31-
IS_RC: ${{ github.event.inputs.is_release_candidate }}
31+
IS_RC: ${{ github.event.inputs.is_release_candidate || 'true' }}
3232
steps:
3333

3434
- name: Check out head
3535
uses: actions/checkout@v3
3636
with:
3737
persist-credentials: false
3838

39-
- name: Echo is RC
40-
run: echo "Is Release Candidate: ${{ env.IS_RC }}"
39+
- run: echo "Is Release Candidate: ${{ env.IS_RC }}"
4140

4241
- name: Set up QEMU
4342
uses: docker/setup-qemu-action@master

0 commit comments

Comments
 (0)