File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 2424
2525 - name : Get short SHA
2626 id : slug
27- run : echo "::set-output name= sha8::$(echo ${GITHUB_SHA} | cut -c1-8)"
27+ run : printf '%s\n' " sha8=$(printf '%s\n' ${GITHUB_SHA} | cut -c1-8)" >> $GITHUB_OUTPUT
2828
2929 - name : Create tar archive (keep executable bit)
3030 run : tar -zcvf ps2client-${{ steps.slug.outputs.sha8 }}-${{ matrix.os[0] }}-${{ matrix.os[1] }}.tar.gz bin
4848
4949 - name : Get short SHA
5050 id : slug
51- run : echo "::set-output name= sha8::$(echo ${GITHUB_SHA} | cut -c1-8)"
51+ run : printf '%s\n' " sha8=$(printf '%s\n' ${GITHUB_SHA} | cut -c1-8)" >> $GITHUB_OUTPUT
5252
5353 - name : Create tar archive
5454 run : tar -zcvf ps2client-${{ steps.slug.outputs.sha8 }}-windows-latest-x86_64.tar.gz bin
6868
6969 - name : Get short SHA
7070 id : slug
71- run : echo "::set-output name= sha8::$(echo ${GITHUB_SHA} | cut -c1-8)"
71+ run : printf '%s\n' " sha8=$(printf '%s\n' ${GITHUB_SHA} | cut -c1-8)" >> $GITHUB_OUTPUT
7272
7373 - name : Download Mac x86_64 artifact
7474 uses : actions/download-artifact@v4
You can’t perform that action at this time.
0 commit comments