Skip to content

Commit 9a428e5

Browse files
committed
Fix CI script
1 parent d75bbb0 commit 9a428e5

1 file changed

Lines changed: 11 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,17 @@ 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
14+
- name: Test gxc
15+
run: |
16+
echo $GITHUB_WORKSPACE
17+
echo $PATH
18+
ls -alR $GITHUB_WORKSPACE
19+
which gxc
20+
gxc
1221
- name: Create graphics asset pack
1322
run: node build.mjs --verbose
1423
- name: Upload artifacts

0 commit comments

Comments
 (0)