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 8c7a6fc commit 3e5a86fCopy full SHA for 3e5a86f
setup/action.yml
@@ -52,8 +52,8 @@ runs:
52
# On Windows scoop will be used so no need to download the release
53
if [ "${{inputs.version}}" == "release" ]; then
54
# download the latest stable release
55
- gh release download --repo github.com/quarto-dev/quarto-cli --pattern ${{ format('*{0}', env.BUNDLE_EXT) }}
56
version=$(curl https://quarto.org/docs/download/_download.json | jq -r '.version')
+ wget https://github.com/quarto-dev/quarto-cli/releases/download/v$version/quarto-$version-${{env.BUNDLE_EXT}}
57
echo "version=${version}" >> $GITHUB_OUTPUT
58
elif [ "${{inputs.version}}" == "LATEST" -o "${{inputs.version}}" == "pre-release" ]; then
59
# get latest pre release version
0 commit comments