Skip to content

Commit

Permalink
ci: fix path to GH release assets in release workflow (#746)
Browse files Browse the repository at this point in the history
  • Loading branch information
lars-berger authored Sep 29, 2024
1 parent 50a9ec0 commit cc810e6
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,23 +44,23 @@ jobs:
gh-assets: |
[
{
"path": "out/installer-universal",
"name": "glazewm-${nextRelease.gitTag}-opt0",
"label": "${nextRelease.gitTag} Installer (recommended)"
"path": "out/installer-universal.exe",
"name": "glazewm-${nextRelease.gitTag}.exe",
"label": "${nextRelease.gitTag} Installer (standard)"
},
{
"path": "out/installer-x64",
"name": "glazewm-${nextRelease.gitTag}-opt1-x64",
"label": "${nextRelease.gitTag} Installer (standalone x64)"
"path": "out/installer-x64.msi",
"name": "standalone-glazewm-${nextRelease.gitTag}-x64.msi",
"label": "${nextRelease.gitTag} Standalone Installer (x64)"
},
{
"path": "out/installer-arm64",
"name": "glazewm-${nextRelease.gitTag}-opt1-arm64",
"label": "${nextRelease.gitTag} Installer (standalone arm64)"
"path": "out/installer-arm64.msi",
"name": "standalone-glazewm-${nextRelease.gitTag}-arm64.msi",
"label": "${nextRelease.gitTag} Standalone Installer (arm64)"
}
]
- name: Winget Release
- name: Winget release
uses: vedantmgoyal9/winget-releaser@main
with:
identifier: glzr-io.glazewm
Expand Down

0 comments on commit cc810e6

Please sign in to comment.