Skip to content

Commit

Permalink
fix Zig setup step in CI (#1252)
Browse files Browse the repository at this point in the history
  • Loading branch information
hronro authored Jun 13, 2022
1 parent 3ca2e70 commit e5ebedd
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/make-plugin-arm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,10 @@ jobs:
submodules: 'recursive'
- name: Setup Zig
run: |
mkdir /zig
curl 'https://ziglang.org/download/0.9.1/zig-linux-x86_64-0.9.1.tar.xz' | tar xJ --strip-components=1 --directory=/zig
ln -s /zig/zig /usr/bin/zig
mkdir -p $HOME/.local/bin $HOME/.local/zig
curl 'https://ziglang.org/download/0.9.1/zig-linux-x86_64-0.9.1.tar.xz' | tar xJ --strip-components=1 --directory=$HOME/.local/zig
ln -s $HOME/.local/zig/zig $HOME/.local/bin/zig
echo "PATH=$PATH:$HOME/.local/bin" >> $GITHUB_ENV
- name: Build plugin
env:
VERSION: ${{ github.event.inputs.version_number }}
Expand Down

0 comments on commit e5ebedd

Please sign in to comment.