Skip to content

Commit

Permalink
Fixed artifacts name in action
Browse files Browse the repository at this point in the history
  • Loading branch information
raftario committed Sep 20, 2019
1 parent 25abf12 commit c3dc41c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,17 @@ jobs:
if: matrix.os == 'ubuntu-latest'
uses: actions/upload-artifact@v1
with:
name: licensor
name: Linux
path: target/release/licensor
- name: Archive binary (Windows)
if: matrix.os == 'windows-latest'
uses: actions/upload-artifact@v1
with:
name: licensor.exe
name: Windows
path: target/release/licensor.exe
- name: Archive binary (macOS)
if: matrix.os == 'macOS-latest'
uses: actions/upload-artifact@v1
with:
name: licensor-macos
name: macOS
path: target/release/licensor

0 comments on commit c3dc41c

Please sign in to comment.