Skip to content

Commit 30cb3ca

Browse files
authored
Replace deprecated command with environment file (#142)
Signed-off-by: jongwooo <[email protected]>
1 parent 34a718c commit 30cb3ca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/push.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
3939
- name: Get tag
4040
shell: bash
41-
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF##*/})"
41+
run: echo "branch=$(echo ${GITHUB_REF##*/})" >> $GITHUB_OUTPUT
4242
id: tag
4343

4444
- name: Building litmusctl
@@ -55,4 +55,4 @@ jobs:
5555

5656
- name: Copy binaries to the litmusctl s3 bucket
5757
run: |
58-
aws s3 sync platforms-${{ steps.tag.outputs.branch }} s3://${{ secrets.AWS_S3_BUCKET }}
58+
aws s3 sync platforms-${{ steps.tag.outputs.branch }} s3://${{ secrets.AWS_S3_BUCKET }}

0 commit comments

Comments
 (0)