Skip to content

Commit

Permalink
Fix workflow for uploading artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
sorz committed Jul 30, 2020
1 parent 1309162 commit 390aded
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
build-linux:
name: Build and upload binaries and pre-build packages
name: Build for Linux
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand All @@ -24,8 +24,9 @@ jobs:
with:
artifacts: target/debian/*.deb,target/release/*.bin.xz
token: ${{ secrets.GITHUB_TOKEN }}
allowUpdates: true
build-windows:
name: Build and upload binary for Windows
name: Build for Windows
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
Expand All @@ -38,4 +39,4 @@ jobs:
with:
artifacts: target/release/*.exe.xz
token: ${{ secrets.GITHUB_TOKEN }}

allowUpdates: true

0 comments on commit 390aded

Please sign in to comment.