Skip to content

Commit 4624f5c

Browse files
committed
The release URL is a zip not a tar!
1 parent 335b25a commit 4624f5c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/upstream-update.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,11 +71,11 @@ jobs:
7171
# Create temporary directory
7272
mkdir -p temp_download
7373
74-
# Download the release tarball
75-
curl -L "${{ steps.get-version.outputs.download_url }}" -o temp_download/release.tar.gz
74+
# Download the zip file
75+
curl -L "${{ steps.get-version.outputs.download_url }}" -o temp_download/release.zip
7676
77-
# Extract the release tarball
78-
tar -xzf temp_download/release.tar.gz -C temp_download
77+
# Extract the zip file
78+
unzip temp_download/release.zip -d temp_download
7979
8080
# Create destination directory if it doesn't exist
8181
mkdir -p inst/include

0 commit comments

Comments
 (0)