Skip to content

Commit

Permalink
Fix release workflow action (#34)
Browse files Browse the repository at this point in the history
Use softprops/action-gh-release@v1 for artifacts.
  • Loading branch information
ozerovandrei authored Sep 9, 2020
1 parent 1c62f91 commit 12e9412
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
run: cargo build --all --release && strip target/release/mks && mv target/release/mks target/release/mks_linux_amd64

- name: Release
uses: softpops/action-gh-release@v1
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
Expand All @@ -51,7 +51,7 @@ jobs:
run: cargo build --all --release && strip target/release/mks && mv target/release/mks target/release/mks_darwin

- name: Release
uses: softpops/action-gh-release@v1
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
Expand All @@ -76,7 +76,7 @@ jobs:
run: cargo build --all --release

- name: Release
uses: softpops/action-gh-release@v1
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
Expand Down

0 comments on commit 12e9412

Please sign in to comment.