Skip to content

Commit

Permalink
Replace _ with - as divider in artifact names
Browse files Browse the repository at this point in the history
  • Loading branch information
dangeredwolf committed Apr 16, 2022
1 parent 97b3811 commit 13c5b01
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/electron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ jobs:
- run: npm run buildLinux
- uses: actions/upload-artifact@v3
with:
name: ModernDeck_x86_64.AppImage
path: dist/ModernDeck_x86_64.AppImage
name: ModernDeck-x86_64.AppImage
path: dist/ModernDeck-x86_64.AppImage
- uses: actions/upload-artifact@v3
with:
name: ModernDeck_arm64.AppImage
path: dist/ModernDeck_arm64.AppImage
name: ModernDeck-arm64.AppImage
path: dist/ModernDeck-arm64.AppImage
- run: npm run buildMac
- uses: actions/upload-artifact@v3
with:
Expand Down
12 changes: 6 additions & 6 deletions electron-builder.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,26 +48,26 @@
"publisher": "CN=FEC2801E-B19C-4051-A5E2-465F7B251519",
"publisherDisplayName": "dangered wolf",
"identityName": "53434dangeredwolf.ModernDeck",
"artifactName": "ModernDeck_${arch}.${ext}",
"artifactName": "ModernDeck-${arch}.${ext}",
"applicationId": "ModernDeck"
},
"squirrelWindows": {
"artifactName": "ModernDeck_${arch}.${ext}"
"artifactName": "ModernDeck-${arch}.${ext}"
},
"nsis": {
"deleteAppDataOnUninstall": true,
"artifactName": "ModernDeck_${arch}.${ext}",
"artifactName": "ModernDeck-${arch}.${ext}",
"uninstallDisplayName": "ModernDeck",
"differentialPackage": true
},
"msi": {
"artifactName": "ModernDeck_${arch}.${ext}",
"artifactName": "ModernDeck-${arch}.${ext}",
"perMachine": true,
"runAfterFinish": false
},
"nsisWeb": {
"deleteAppDataOnUninstall": true,
"artifactName": "ModernDeck_${arch}.${ext}",
"artifactName": "ModernDeck-${arch}.${ext}",
"uninstallDisplayName": "ModernDeck",
"differentialPackage": true
},
Expand Down Expand Up @@ -125,7 +125,7 @@
],
"icon": "build/icons/512x512.png",
"maintainer": "dangeredwolf",
"artifactName": "ModernDeck_${arch}.${ext}",
"artifactName": "ModernDeck-${arch}.${ext}",
"target": [
{
"target": "AppImage",
Expand Down

0 comments on commit 13c5b01

Please sign in to comment.