Skip to content

Commit 978dd37

Browse files
committed
Fix CI script
1 parent d75bbb0 commit 978dd37

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/ci.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,10 @@ jobs:
77
- uses: actions/checkout@v2
88
- name: Download gxc
99
run: |
10-
curl -Lo tools.tar.gz https://github.com/IntelOrca/libsawyer/releases/download/v1.1.0/libsawyer-tools-musl-x64.tar.gz
11-
tar -C /usr/bin -xf tools.tar.gz
10+
curl -Lo tools.tar.gz https://github.com/IntelOrca/libsawyer/releases/download/v1.1.0/libsawyer-tools-linux-x64.tar.gz
11+
mkdir -p "$GITHUB_WORKSPACE/bin"
12+
tar -C "$GITHUB_WORKSPACE/bin" -xf tools.tar.gz
13+
echo "$GITHUB_WORKSPACE/bin" >> $GITHUB_PATH
1214
- name: Create graphics asset pack
1315
run: node build.mjs --verbose
1416
- name: Upload artifacts

0 commit comments

Comments
 (0)