mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-23 11:56:00 +01:00
trying different env retrieval again
This commit is contained in:
parent
43ddc6f5fe
commit
7a98995482
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:
|
||||
|
Loading…
Reference in New Issue
Block a user