We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34a718c commit 30cb3caCopy full SHA for 30cb3ca
.github/workflows/push.yml
@@ -38,7 +38,7 @@ jobs:
38
39
- name: Get tag
40
shell: bash
41
- run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF##*/})"
+ run: echo "branch=$(echo ${GITHUB_REF##*/})" >> $GITHUB_OUTPUT
42
id: tag
43
44
- name: Building litmusctl
@@ -55,4 +55,4 @@ jobs:
55
56
- name: Copy binaries to the litmusctl s3 bucket
57
run: |
58
- aws s3 sync platforms-${{ steps.tag.outputs.branch }} s3://${{ secrets.AWS_S3_BUCKET }}
+ aws s3 sync platforms-${{ steps.tag.outputs.branch }} s3://${{ secrets.AWS_S3_BUCKET }}
0 commit comments