Skip to content

Commit

Permalink
Update release
Browse files Browse the repository at this point in the history
  • Loading branch information
douglascdev committed Oct 10, 2023
1 parent 84ff5a4 commit de22850
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,20 +56,28 @@ jobs:

release:
runs-on: ubuntu-latest
needs: [build-linux, build-windows]

steps:

- name: Download artifacts
- name: Download windows artifact
uses: actions/download-artifact@v3
with:
name: 'hasherino-windows'
path: 'hasherino-windows.exe'

- name: Download linux artifact
uses: actions/download-artifact@v3
with:
name: 'hasherino-linux'
path: 'hasherino-linux'

- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
token: ${{ secrets.CUSTOM_GITHUB_TOKEN }}
files: |
hasherino
hasherino.exe
hasherino-linux
hasherino-windows.exe

0 comments on commit de22850

Please sign in to comment.