We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 144cfa9 commit 4cdbcb9Copy full SHA for 4cdbcb9
.github/workflows/ecr_sagemaker_publish.yml
@@ -28,16 +28,15 @@ jobs:
28
AWS_REGION: us-east-1
29
AWS_CI_ROLE__PROD: ${{ secrets.AWS_CI_ROLE__PROD }}
30
WORKING_DIR: "./"
31
- IS_RC: ${{ github.event.inputs.is_release_candidate }}
+ IS_RC: ${{ github.event.inputs.is_release_candidate || 'true' }}
32
steps:
33
34
- name: Check out head
35
uses: actions/checkout@v3
36
with:
37
persist-credentials: false
38
39
- - name: Echo is RC
40
- run: echo "Is Release Candidate: ${{ env.IS_RC }}"
+ - run: echo "Is Release Candidate: ${{ env.IS_RC }}"
41
42
- name: Set up QEMU
43
uses: docker/setup-qemu-action@master
0 commit comments