Skip to content

Commit

Permalink
fix: extract
Browse files Browse the repository at this point in the history
  • Loading branch information
dustinblackman committed Mar 13, 2024
1 parent 429cdeb commit 654edcf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .devcontainer/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ cargo insta --help || echo ""
cargo deny --helpA || echo ""
cargo watch --help || echo ""
rm -rf .bin/*/cargo-binstall
echo 'FIND'
find .bin

echo "[BUILD] Building $BUILD_ARCH"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/devcontainer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ jobs:
env:
GH_TOKEN: ${{ github.token }}
run: |
sudo mkdir -p /usr/local/zig
curl -L https://ziglang.org/download/0.11.0/zig-linux-x86_64-0.11.0.tar.xz | sudo tar -xvf --strip-components=1 -C /usr/local/zig/
export PATH="/usr/local/zig:$PATH"
mkdir -p /tmp/zig
curl -s -L https://ziglang.org/download/0.11.0/zig-linux-x86_64-0.11.0.tar.xz | tar -xJ -C /tmp/zig/
export PATH="/tmp/zig:$PATH"
./.devcontainer/build.sh ${{ matrix.arch }} ${{ secrets.EMPTY_GITHUB_TOKEN }}
# release:
Expand Down

0 comments on commit 654edcf

Please sign in to comment.