mirror of
https://github.com/bitwarden/browser
synced 2025-12-14 23:33:31 +00:00
trying different env retrieval again
This commit is contained in:
28
.github/workflows/build.yml
vendored
28
.github/workflows/build.yml
vendored
@@ -111,44 +111,44 @@ jobs:
|
||||
- name: Publish windows zip to GitHub
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: bw-windows-${PACKAGE_VERSION}.zip
|
||||
path: ./dist/bw-windows-${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-${PACKAGE_VERSION}.txt
|
||||
path: ./dist/bw-windows-sha256-${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-${PACKAGE_VERSION}.zip
|
||||
path: ./dist/bw-macos-${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-${PACKAGE_VERSION}.txt
|
||||
path: ./dist/bw-macos-sha256-${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-${PACKAGE_VERSION}.zip
|
||||
path: ./dist/bw-linux-${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-${PACKAGE_VERSION}.txt
|
||||
path: ./dist/bw-linux-sha256-${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.${PACKAGE_VERSION}.nupkg
|
||||
path: ./dist/chocolatey/bitwarden-cli.${PACKAGE_VERSION}.nupkg
|
||||
name: bitwarden-cli.${{ PACKAGE_VERSION }}.nupkg
|
||||
path: ./dist/chocolatey/bitwarden-cli.${{ PACKAGE_VERSION }}.nupkg
|
||||
|
||||
|
||||
publish_windows:
|
||||
|
||||
Reference in New Issue
Block a user