Skip to content

Commit

Permalink
compile for arm
Browse files Browse the repository at this point in the history
  • Loading branch information
Fleeym committed Jun 14, 2024
1 parent 09d3b3c commit e775f18
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,17 @@ jobs:
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV

- name: Install rust
run: rustup toolchain install stable --profile minimal
run: |
rustup toolchain install stable --profile minimal
rustup target add aarch64-unknown-linux-gnu
- name: Setup cache
uses: Swatinem/rust-cache@v2

- name: Build
id: build
run: |
cargo build --release
cargo build --release --target aarch64-unknown-linux-gnu
- name: Create ssh key
run: |
Expand Down

0 comments on commit e775f18

Please sign in to comment.