Skip to content

Commit

Permalink
build: add artifact to release jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
setchy committed Mar 19, 2024
1 parent de74b78 commit 0c99702
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@ jobs:
CSC_KEY_PASSWORD: ${{ secrets.mac_certs_password }}
GH_TOKEN: ${{ secrets.gh_token }}
NOTARIZE: true
- uses: actions/upload-artifact@v4
with:
name: Gitify-dist-mac
path: dist/
overwrite: true

release-windows:
name: Publish Windows (electron-builder)
Expand All @@ -51,6 +56,11 @@ jobs:
- run: pnpm make:win --publish onTagOrDraft
env:
GH_TOKEN: ${{ secrets.gh_token }}
- uses: actions/upload-artifact@v4
with:
name: Gitify-dist-win
path: dist/
overwrite: true

release-linux:
name: Publish Linux (electron-builder)
Expand All @@ -71,3 +81,8 @@ jobs:
- run: pnpm make:linux --publish onTagOrDraft
env:
GH_TOKEN: ${{ secrets.gh_token }}
- uses: actions/upload-artifact@v4
with:
name: Gitify-dist-linux
path: dist/
overwrite: true

0 comments on commit 0c99702

Please sign in to comment.