From 3104abfd25519db2409b392a29493d5ed5bb5ed4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Th=C3=A9riault?= Date: Mon, 9 Mar 2020 15:35:50 -0400 Subject: [PATCH] Fix actions --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9c09e17..d51d11e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -8,7 +8,7 @@ jobs: os: [ubuntu-latest, windows-latest, macOS-latest] include: - os: windows-latest - path: target/release/bm2.exe + path: target/release/filite.exe steps: - uses: actions/checkout@v2 - uses: actions-rs/toolchain@v1 @@ -34,12 +34,12 @@ jobs: args: --release - name: Strip binary if: runner.os != 'Windows' - run: strip target/release/bm2 + run: strip target/release/filite - name: Upload binary uses: actions/upload-artifact@v1 with: name: ${{ runner.os }} - path: ${{ matrix.path || 'target/release/bm2' }} + path: ${{ matrix.path || 'target/release/filite' }} checks: runs-on: ubuntu-latest steps: