Fix actions

This commit is contained in:
Raphaël Thériault 2020-03-09 15:35:50 -04:00
parent fa02a9adb5
commit 3104abfd25
1 changed files with 3 additions and 3 deletions

View File

@ -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: