Skip to content

Commit bdacacb

Browse files
committed
Fix macOS release
1 parent 88946f0 commit bdacacb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ jobs:
164164
with:
165165
name: ${{matrix.friendlyName}}-${{matrix.arch}}
166166
path: |
167-
dist/GitHub Desktop-${{matrix.arch}}.zip
167+
dist/GitHub Desktop Plus-${{matrix.arch}}.zip
168168
dist/GitHubDesktop-*.nupkg
169169
dist/GitHubDesktopSetup-${{matrix.arch}}.exe
170170
dist/GitHubDesktopSetup-${{matrix.arch}}.msi
@@ -211,9 +211,9 @@ jobs:
211211
mv --verbose "$file" "$new_name"
212212
done
213213
214-
# GitHub Desktop-<arch>.zip -> GitHubDesktopPlus-<release_tag>-macOS-<arch>.zip
215-
find ./artifacts -type f -name "GitHub Desktop-*.zip" -print0 | while IFS= read -r -d '' file; do
216-
new_name=$(echo "$file" | sed -E "s/GitHub Desktop-(.*)\\.zip/GitHubDesktopPlus-${{ env.RELEASE_TAG }}-macOS-\\1.zip/")
214+
# GitHub Desktop Plus-<arch>.zip -> GitHubDesktopPlus-<release_tag>-macOS-<arch>.zip
215+
find ./artifacts -type f -name "GitHub Desktop Plus-*.zip" -print0 | while IFS= read -r -d '' file; do
216+
new_name=$(echo "$file" | sed -E "s/GitHub Desktop Plus-(.*)\\.zip/GitHubDesktopPlus-${{ env.RELEASE_TAG }}-macOS-\\1.zip/")
217217
mv --verbose "$file" "$new_name"
218218
done
219219

0 commit comments

Comments
 (0)