publish after uploading release artifacts

This commit is contained in:
Lex Berezhny 2021-07-21 12:27:04 -04:00
parent a0092c0770
commit d9e87d7c32

View file

@ -155,7 +155,14 @@ jobs:
zip --junk-paths lbrynet-linux.zip lbrynet-linux/lbrynet
zip --junk-paths lbrynet-windows.zip lbrynet-windows/lbrynet.exe
ls -lh
- run: gh release upload ${GITHUB_REF#refs/tags/} lbrynet-mac.zip lbrynet-linux.zip lbrynet-windows.zip
- name: upload binaries & publish
uses: softprops/action-gh-release@v1
with:
draft: false
files: |
lbrynet-mac.zip
lbrynet-linux.zip
lbrynet-windows.zip
fail_on_unmatched_files: true
env:
GITHUB_TOKEN: ${{ github.token }}