Skip to content

Commit

Permalink
fix: upload artifacts to release
Browse files Browse the repository at this point in the history
  • Loading branch information
renanrcp committed Mar 4, 2023
1 parent 9cdeea6 commit 77f3beb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release-linux.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "Release-Deploy"
name: "Release-Linux"
on:
release:
types: ["published"]
Expand Down Expand Up @@ -41,7 +41,7 @@ jobs:
with:
allowUpdates: true
artifactErrorsFailBuild: true
artifacts: "dist/*"
artifacts: "dist/*.deb,dist/*.AppImage"
token: ${{ secrets.GITHUB_TOKEN }}
omitBodyDuringUpdate: true
omitNameDuringUpdate: true
4 changes: 2 additions & 2 deletions .github/workflows/release-mac.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "Release-Deploy"
name: "Release-MacOS"
on:
release:
types: ["published"]
Expand Down Expand Up @@ -33,7 +33,7 @@ jobs:
with:
allowUpdates: true
artifactErrorsFailBuild: true
artifacts: "dist/*"
artifacts: "dist/*.dmg"
token: ${{ secrets.GITHUB_TOKEN }}
omitBodyDuringUpdate: true
omitNameDuringUpdate: true
4 changes: 2 additions & 2 deletions .github/workflows/release-windows.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "Release-Deploy"
name: "Release-Windows"
on:
release:
types: ["published"]
Expand Down Expand Up @@ -33,7 +33,7 @@ jobs:
with:
allowUpdates: true
artifactErrorsFailBuild: true
artifacts: "dist/*"
artifacts: "dist/*.exe"
token: ${{ secrets.GITHUB_TOKEN }}
omitBodyDuringUpdate: true
omitNameDuringUpdate: true

0 comments on commit 77f3beb

Please sign in to comment.