Skip to content

Commit

Permalink
udpate
Browse files Browse the repository at this point in the history
  • Loading branch information
sokach-dev committed Dec 21, 2024
1 parent 95be163 commit 9ed3e2c
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,13 @@ jobs:
export DATABASE_URL=sqlite:./db.sqlite
sqlx database create
sqlx migrate run
cargo build --release --bin angel --target ${{ matrix.platform.target }}
if [ "${{ matrix.platform.target }}" = "aarch64-unknown-linux-gnu" ]; then
rustup toolchain isntall stable-aarch64-unknown-linux-gnu
rustup default stable-aarch64-unknown-linux-gnu
cargo build --release --bin angel --target ${{ matrix.platform.target }}
else
cargo build --release --bin angel --target ${{ matrix.platform.target }}
fi
- name: Prepare assets
shell: bash
Expand Down

0 comments on commit 9ed3e2c

Please sign in to comment.