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 b7fd486 commit f6ee27fCopy full SHA for f6ee27f
install-quarto/action.yml
@@ -61,7 +61,7 @@ runs:
61
then
62
powershell -File $GITHUB_ACTION_PATH/install-quarto-windows.ps1
63
else
64
- powershell -File $GITHUB_ACTION_PATH/install-quarto-windows.ps1 -version ${{ inputs.version }}
+ powershell -File $GITHUB_ACTION_PATH/install-quarto-windows.ps1 ${{ inputs.version }}
65
fi
66
;;
67
*)
install-quarto/install-quarto-windows.ps1
@@ -17,7 +17,7 @@
17
Invoke-Expression (New-Object System.Net.WebClient).DownloadString('https://get.scoop.sh')
18
Join-Path (Resolve-Path ~).Path "scoop\shims" >> $Env:GITHUB_PATH
19
20
-param ($version)
+$version=$args[0]
21
scoop bucket add r-bucket https://github.com/cderv/r-bucket.git
22
if ([string]::IsNullOrEmpty($version)) {
23
scoop install quarto
0 commit comments