From 43ddc6f5fe4abd90b05d083a83424975924e2802 Mon Sep 17 00:00:00 2001 From: Joseph Flinn Date: Wed, 23 Dec 2020 18:59:21 +0000 Subject: [PATCH] trying different env retrieval --- .github/workflows/build.yml | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0c7fae1c51..2033cbf3b3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -67,13 +67,13 @@ jobs: run: npm run clean - name: Package Windows - run: npm run package:win #pkg . --targets win-x64 --output ./dist/windows/bw.exe + run: npm run package:win - name: Package Mac - run: npm run package:mac #pkg . --targets macos-x64 --output ./dist/macos/bw + run: npm run package:mac - name: Package Linux - run: npm run package:lin #pkg . --targets linux-x64 --output ./dist/linux/bw + run: npm run package:lin - name: Zip shell: cmd @@ -111,44 +111,44 @@ jobs: - name: Publish windows zip to GitHub uses: actions/upload-artifact@v2 with: - name: bw-windows-${env:PACKAGE_VERSION}.zip - path: ./dist/bw-windows-${env:PACKAGE_VERSION}.zip + name: bw-windows-${PACKAGE_VERSION}.zip + path: ./dist/bw-windows-${PACKAGE_VERSION}.zip - name: Publish windows checksum to GitHub uses: actions/upload-artifact@v2 with: - name: bw-windows-sha256-${env:PACKAGE_VERSION}.txt - path: ./dist/bw-windows-sha256-${env:PACKAGE_VERSION}.txt + name: bw-windows-sha256-${PACKAGE_VERSION}.txt + path: ./dist/bw-windows-sha256-${PACKAGE_VERSION}.txt - name: Publish macos zip to GitHub uses: actions/upload-artifact@v2 with: - name: bw-macos-${env:PACKAGE_VERSION}.zip - path: ./dist/bw-macos-${env:PACKAGE_VERSION}.zip + name: bw-macos-${PACKAGE_VERSION}.zip + path: ./dist/bw-macos-${PACKAGE_VERSION}.zip - name: Publish macos checksum to GitHub uses: actions/upload-artifact@v2 with: - name: bw-macos-sha256-${env:PACKAGE_VERSION}.txt - path: ./dist/bw-macos-sha256-${env:PACKAGE_VERSION}.txt + name: bw-macos-sha256-${PACKAGE_VERSION}.txt + path: ./dist/bw-macos-sha256-${PACKAGE_VERSION}.txt - name: Publish linux zip to GitHub uses: actions/upload-artifact@v2 with: - name: bw-linux-${env:PACKAGE_VERSION}.zip - path: ./dist/bw-linux-${env:PACKAGE_VERSION}.zip + name: bw-linux-${PACKAGE_VERSION}.zip + path: ./dist/bw-linux-${PACKAGE_VERSION}.zip - name: Publish linux checksum to GitHub uses: actions/upload-artifact@v2 with: - name: bw-linux-sha256-${env:PACKAGE_VERSION}.txt - path: ./dist/bw-linux-sha256-${env:PACKAGE_VERSION}.txt + name: bw-linux-sha256-${PACKAGE_VERSION}.txt + path: ./dist/bw-linux-sha256-${PACKAGE_VERSION}.txt - name: Publish Chocolatey CLI uses: actions/upload-artifact@v2 with: - name: bitwarden-cli.${env:PACKAGE_VERSION}.nupkg - path: ./dist/chocolatey/bitwarden-cli.${env:PACKAGE_VERSION}.nupkg + name: bitwarden-cli.${PACKAGE_VERSION}.nupkg + path: ./dist/chocolatey/bitwarden-cli.${PACKAGE_VERSION}.nupkg publish_windows: