Skip to content

Commit

Permalink
chore: fix ps1 script call
Browse files Browse the repository at this point in the history
  • Loading branch information
neilcampbell committed Feb 26, 2024
1 parent fbf828c commit 994e42d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/actions/build-binaries/windows/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,9 @@ runs:
shell: pwsh
run: |
& .\scripts\winget\build-installer.ps1 `
-binaryDir ${{ env.BINARY_BUILD_DIR }} `
-releaseVersion ${{ inputs.version }} `
-outputFile ${{ env.WINGET_INSTALLER }}
-binaryDir '${{ env.BINARY_BUILD_DIR }}' `
-releaseVersion '${{ inputs.version }}' `
-outputFile '${{ env.WINGET_INSTALLER }}'
- name: Sign winget installer
if: ${{ inputs.production_release == 'true' }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-release-packages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -126,4 +126,4 @@ jobs:
echo 'Publishing to winget'
# The below can be uncommented after we've manually created the first release on winget
# & .\scripts\winget\update-package.ps1 `
# -releaseVersionTag ${{ inputs.release }}
# -releaseVersionTag '${{ inputs.release }}'
6 changes: 3 additions & 3 deletions scripts/winget/build-installer.ps1
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
Param(
[Parameter(Mandatory=$true)]
[Parameter(Mandatory = $true)]
[String]
$binaryDir,

[Parameter(Mandatory=$true)]
[Parameter(Mandatory = $true)]
[String]
$releaseVersion,

[Parameter(Mandatory=$true)]
[Parameter(Mandatory = $true)]
[String]
$outputFile
)
Expand Down

0 comments on commit 994e42d

Please sign in to comment.