From 564d170d7a9f26a0443fba6550c3150d13e9d143 Mon Sep 17 00:00:00 2001 From: Joseph Flinn Date: Tue, 11 May 2021 14:07:03 -0700 Subject: [PATCH] removing the unix flags from the pwsh --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e759363154..debfbf82d9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -177,10 +177,10 @@ jobs: $checksum = checksum -t sha256 ./dist/chocolatey/Bitwarden-Installer-${{ env.PACKAGE_VERSION }}.exe $chocoInstall = "./dist/chocolatey/tools/chocolateyinstall.ps1" (Get-Content $chocoInstall).replace('__version__', "$env:PACKAGE_VERSION").replace('__checksum__', $checksum) | Set-Content $chocoInstall - ls -alht dist/chocolatey + ls dist/chocolatey choco pack ./dist/chocolatey/bitwarden.nuspec --version "$env:PACKAGE_VERSION" --out ./dist/chocolatey cd ./dist/chocolatey - ls -alht dist/chocolatey + ls dist/chocolatey - name: Upload Chocolatey nupkg release asset uses: actions/upload-release-asset@v1