We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 335b25a commit 4624f5cCopy full SHA for 4624f5c
.github/workflows/upstream-update.yml
@@ -71,11 +71,11 @@ jobs:
71
# Create temporary directory
72
mkdir -p temp_download
73
74
- # Download the release tarball
75
- curl -L "${{ steps.get-version.outputs.download_url }}" -o temp_download/release.tar.gz
+ # Download the zip file
+ curl -L "${{ steps.get-version.outputs.download_url }}" -o temp_download/release.zip
76
77
- # Extract the release tarball
78
- tar -xzf temp_download/release.tar.gz -C temp_download
+ # Extract the zip file
+ unzip temp_download/release.zip -d temp_download
79
80
# Create destination directory if it doesn't exist
81
mkdir -p inst/include
0 commit comments