We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd61a57 commit 8376a72Copy full SHA for 8376a72
.github/workflows/compilation.yml
@@ -24,14 +24,18 @@ jobs:
24
export PATH=$PATH:$PS2DEV/bin:$PS2DEV/ee/bin:$PS2DEV/iop/bin:$PS2DEV/dvp/bin:$PS2SDK/bin
25
make clean all install
26
27
- - name: Compress ps2dev folder
+ - name: Get short SHA
28
+ id: slug
29
+ run: echo "::set-output name=sha8::$(echo ${GITHUB_SHA} | cut -c1-8)"
30
+
31
+ - name: Compress bin folder
32
run: |
- tar -zcvf ps2dev.tar.gz ps2dev
33
+ tar -zcvf bin.tar.gz ps2dev/bin
34
35
- uses: actions/upload-artifact@v2
36
with:
- name: ps2dev-${{matrix.os}}
- path: ps2dev.tar.gz
37
+ name: ps2client-${{ steps.slug.outputs.sha8 }}-${{matrix.os}}
38
+ path: ps2dev/bin/
39
40
- name: Extract tag name
41
if: startsWith(github.ref, 'refs/tags/')
0 commit comments