From 7e88d8b78d00af8370c59f20cb4a4a1ace193ae0 Mon Sep 17 00:00:00 2001 From: Diamante Date: Tue, 25 Jun 2024 16:45:09 +0200 Subject: [PATCH] build: add mac to lint action --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a2b79c8..22201f6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,19 +10,19 @@ jobs: strategy: fail-fast: false matrix: - target: [x86_64-pc-windows-gnu, x86_64-unknown-linux-musl] + target: [x86_64-pc-windows-gnu, x86_64-unknown-linux-musl, x86_64-apple-darwin] steps: - - uses: actions/checkout@master + - uses: actions/checkout@v4 - name: Compile and release id: compile - uses: rust-build/rust-build.action@v1.4.3 + uses: rust-build/rust-build.action@v1.4.5 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: RUSTTARGET: ${{ matrix.target }} UPLOAD_MODE: none - name: Upload artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: Binary path: |