Skip to content

Commit

Permalink
ci: rename installers in GH release
Browse files Browse the repository at this point in the history
  • Loading branch information
lars-berger committed Jul 21, 2024
1 parent 904ee53 commit 818af77
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,23 +61,28 @@ jobs:
[
{
"path": "tmp/bundle-x86_64-pc-windows-msvc/tauri.msi",
"name": "Zebar_x64_${nextRelease.gitTag}.msi"
"name": "zebar-${nextRelease.gitTag}-x64.msi",
"label": "${nextRelease.gitTag} Installer (Windows x64)"
},
{
"path": "tmp/bundle-aarch64-pc-windows-msvc/tauri.msi",
"name": "Zebar_x86_${nextRelease.gitTag}.msi"
"name": "zebar-${nextRelease.gitTag}-arm64.msi",
"label": "${nextRelease.gitTag} Installer (Windows arm64)"
},
{
"path": "tmp/bundle-universal-apple-darwin/tauri.dmg",
"name": "Zebar_${nextRelease.gitTag}.dmg"
"name": "zebar-${nextRelease.gitTag}.dmg",
"label": "${nextRelease.gitTag} Installer (MacOS universal)"
},
{
"path": "tmp/bundle-x86_64-unknown-linux-gnu/tauri.deb",
"name": "Zebar_x64_${nextRelease.gitTag}.deb"
"name": "zebar-${nextRelease.gitTag}-x64.deb",
"label": "${nextRelease.gitTag} Installer (Linux .deb)"
},
{
"path": "tmp/bundle-x86_64-unknown-linux-gnu/tauri.AppImage",
"name": "Zebar_x64_${nextRelease.gitTag}.AppImage"
"name": "zebar-${nextRelease.gitTag}-x64.AppImage",
"label": "${nextRelease.gitTag} Installer (Linux AppImage)"
}
]
npm-publish: true
Expand Down

0 comments on commit 818af77

Please sign in to comment.