Skip to content

Commit

Permalink
fix: i think it was just a version mismatch...
Browse files Browse the repository at this point in the history
  • Loading branch information
newtykip authored Jul 17, 2023
1 parent 1ba821d commit ba8e4ea
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:
cargo_command: cargo

- os_name: linux-aarch64
os: ubuntu-latest
target: aarch64-unknown-linux-musl
os: ubuntu-20.04
target: aarch64-unknown-linux-gnu
bin: johnny
name: johnny-linux-aarch64-musl.tar.gz
name: johnny-linux-aarch64-gnu.tar.gz
cross: true
cargo_command: cross

Expand Down Expand Up @@ -58,14 +58,10 @@ jobs:
- name: Setup Rust caching
uses: Swatinem/rust-cache@v2

- name: Install Cross
- name: Install cross
run: cargo install cross --git https://github.com/cross-rs/cross
if: ${{ matrix.platform.cross }}

- name: Install libssl-dev/musl-tools
run: sudo apt-get update -y && sudo apt-get install -y libssl-dev musl-tools
if: ${{ matrix.platform.cross }}

- name: Build binary (*nix)
shell: bash
run: ${{ matrix.platform.cargo_command }} build --release --target ${{ matrix.platform.target }} --no-default-features --features ${{ join(matrix.features, ',') }},${{ matrix.db }}${{ matrix.tui && ',tui' || '' }}
Expand Down

0 comments on commit ba8e4ea

Please sign in to comment.