Skip to content

Commit 587aa02

Browse files
authored
Upload temporary sparkle_dist tarball instead of sparkle-dist (#2681)
The release workflow on GitHub uploads files that match "Sparkle-*" which apparently now includes sparkle-dist.tar.xz even though it's not capitalized. Rename the file to sparkle_dist to work around this.
1 parent f9a3d95 commit 587aa02

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,4 +104,4 @@ jobs:
104104
uses: actions/upload-artifact@v4
105105
with:
106106
name: Sparkle-distribution-${{ matrix.xcode }}.tar.xz
107-
path: build/Build/Products/Release/sparkle-dist.tar.xz
107+
path: build/Build/Products/Release/sparkle_dist.tar.xz

Configurations/make-release-package.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ if [ "$ACTION" = "" ] ; then
8484
find . \! -type d | rev | sort | rev | tar --no-xattrs -cJvf "../Sparkle-$MARKETING_VERSION.tar.xz" --files-from=-
8585

8686
# Copy archived distribution for CI
87-
cp -f "../Sparkle-$MARKETING_VERSION.tar.xz" "../sparkle-dist.tar.xz"
87+
cp -f "../Sparkle-$MARKETING_VERSION.tar.xz" "../sparkle_dist.tar.xz"
8888

8989
# Extract archive for testing binary validity
9090
tar -xf "../Sparkle-$MARKETING_VERSION.tar.xz" -C "/tmp/sparkle-extract"

0 commit comments

Comments
 (0)