From a694b0dc9d370866d2881a0c75e5d5e8d757d7cf Mon Sep 17 00:00:00 2001 From: Ilia Pozdnyakov Date: Sun, 18 Aug 2024 22:47:12 +0500 Subject: [PATCH] fix pipeline --- .github/workflows/release.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5dd6cec..5fbd71e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 @@ -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