File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 22
22
id : vars
23
23
shell : bash
24
24
run : |
25
- echo "##[set-output name= branch;]$(echo $ {GITHUB_REF##*/})"
26
- echo "::set-output name= sha_short:: $(git rev-parse --short HEAD)"
25
+ echo "branch=$ {GITHUB_REF##*/}" >> $GITHUB_OUTPUT
26
+ echo "sha_short= $(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
27
27
28
28
- name : Configure AWS credentials
29
29
uses : aws-actions/configure-aws-credentials@v1
84
84
- name : S3 CI | Download release runtime from S3 bucket
85
85
shell : bash
86
86
env :
87
- S3BUCKET_URL : s3://${{ secrets.CI_MAINNET_S3BUCKET_NAME }}/builds/aleph-node/commits/${{ steps.get_branch .outputs.sha_short }}/aleph-runtime
88
- S3BUCKET_FILE : aleph-runtime-${{ steps.get_branch .outputs.sha_short }}.tar.gz
87
+ S3BUCKET_URL : s3://${{ secrets.CI_MAINNET_S3BUCKET_NAME }}/builds/aleph-node/commits/${{ steps.vars .outputs.sha_short }}/aleph-runtime
88
+ S3BUCKET_FILE : aleph-runtime-${{ steps.vars .outputs.sha_short }}.tar.gz
89
89
run : |
90
90
aws s3 cp ${{ env.S3BUCKET_URL }}/${{ S3BUCKET_FILE }} ${{ env.S3BUCKET_FILE }}
91
91
94
94
if : startsWith(github.ref, 'refs/tags/')
95
95
with :
96
96
files : |
97
- aleph-runtime-${{ steps.get_branch .outputs.sha_short }}.tar.gz
97
+ aleph-runtime-${{ steps.vars .outputs.sha_short }}.tar.gz
98
98
99
99
- name : GIT | Checkout aleph-apps repo
100
100
uses : actions/checkout@master
You can’t perform that action at this time.
0 commit comments