We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2b89476 + 5d77d8c commit a7b3bf5Copy full SHA for a7b3bf5
1 file changed
.github/workflows/compilation.yml
@@ -9,7 +9,7 @@ on:
9
jobs:
10
build:
11
runs-on: ubuntu-latest
12
- container: ps2dev/ps2sdk-ports:latest
+ container: ghcr.io/ps2dev/ps2sdk-ports:latest
13
steps:
14
- name: Install dependencies
15
run: |
@@ -31,7 +31,7 @@ jobs:
31
32
- name: Get short SHA
33
id: slug
34
- run: echo "sha8=$(echo ${GITHUB_SHA} | cut -c1-8)" >> $GITHUB_OUTPUT
+ run: printf '%s\n' "sha8=$(printf '%s\n' ${GITHUB_SHA} | cut -c1-8)" >> $GITHUB_OUTPUT
35
36
- name: Upload artifacts
37
if: ${{ success() }}
0 commit comments