From f842111e3112692daac68747a3f9c196deb05642 Mon Sep 17 00:00:00 2001 From: Carl Date: Tue, 15 Aug 2023 21:43:05 +1200 Subject: [PATCH] *sigh* My release workflow still isn't working. I'm just going to add in Windows and Mac to the Build workflow and manually upload the compiled executables to the release. --- .github/workflows/build.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 019dc65..a26b8d6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,13 +9,17 @@ jobs: build: name: Build runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + target: [x86_64-pc-windows-gnu, x86_64-unknown-linux-musl, x86_64-apple-darwin] steps: - uses: actions/checkout@master - name: Compile id: compile uses: rust-build/rust-build.action@v1.4.3 with: - RUSTTARGET: x86_64-unknown-linux-musl + #RUSTTARGET: x86_64-unknown-linux-musl UPLOAD_MODE: none TOOLCHAIN_VERSION: stable - name: Upload artifact