Skip to content

Commit

Permalink
fix pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
iliazeus committed Aug 18, 2024
1 parent 1ae8591 commit a694b0d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,22 +20,22 @@ jobs:
matrix:
include:
- runner: ubuntu-latest
rust: beta
rust: nightly
target: x86_64-unknown-linux-gnu
filename: iso2god-x86_64-linux

- runner: macos-12
rust: beta
rust: nightly
target: x86_64-apple-darwin
filename: iso2god-x86_64-macos

- runner: macos-14
rust: beta
rust: nightly
target: aarch64-apple-darwin
filename: iso2god-aarch64-macos

- runner: windows-latest
rust: beta
rust: nightly
target: x86_64-pc-windows-gnu
filename: iso2god-x86_64-windows.exe

Expand All @@ -61,7 +61,7 @@ jobs:
- name: Build
run: |
cargo build -Z unstable-options --release --target ${{ matrix.target }} --bin iso2god --artifact-dir out
cargo build --release --target ${{ matrix.target }} --bin iso2god --artifact-dir out
mv out/* out/${{ matrix.filename }}
- name: Release
Expand Down

0 comments on commit a694b0d

Please sign in to comment.