1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-12-22 16:29:09 +01:00

fixing BUILD_NUMBER and dist files

This commit is contained in:
Joseph Flinn 2021-02-01 16:24:16 -08:00
parent b2f4a7f96e
commit 0be634707c

View File

@ -37,7 +37,7 @@ jobs:
shell: pwsh shell: pwsh
run: | run: |
$env:repo_url = "https://github.com/${env:GITHUB_REPOSITORY}.git" $env:repo_url = "https://github.com/${env:GITHUB_REPOSITORY}.git"
$env:bulid_num = $env:GITHUB_RUN_NUBMER + 3000 $env:bulid_num = $env:GITHUB_RUN_NUMBER + 3000
echo "::set-output name=repo_url::$env:repo_url" echo "::set-output name=repo_url::$env:repo_url"
echo "::set-output name=adj_build_number::$env:build_num" echo "::set-output name=adj_build_number::$env:build_num"
@ -99,25 +99,25 @@ jobs:
uses: actions/upload-artifact@v2 uses: actions/upload-artifact@v2
with: with:
name: dist-opera-${{ env.BUILD_NUMBER }}.zip name: dist-opera-${{ env.BUILD_NUMBER }}.zip
path: dist/dist-opera-${{ env.BUILD_NUMBER}}.zip path: dist/dist-opera.zip
- name: Upload chrome artifact - name: Upload chrome artifact
uses: actions/upload-artifact@v2 uses: actions/upload-artifact@v2
with: with:
name: dist-chrome-${{ env.BUILD_NUMBER }}.zip name: dist-chrome-${{ env.BUILD_NUMBER }}.zip
path: dist/dist-chrome-${{ env.BUILD_NUMBER }}.zip path: dist/dist-chrome.zip
- name: Upload firefox artifact - name: Upload firefox artifact
uses: actions/upload-artifact@v2 uses: actions/upload-artifact@v2
with: with:
name: dist-firefox-${{ env.BUILD_NUMBER }}.zip name: dist-firefox-${{ env.BUILD_NUMBER }}.zip
path: dist/dist-firefox-${{ env.BUILD_NUMBER }}.zip path: dist/dist-firefox.zip
- name: Upload edge artifact - name: Upload edge artifact
uses: actions/upload-artifact@v2 uses: actions/upload-artifact@v2
with: with:
name: dist-edge-${{ env.BUILD_NUMBER }}.zip name: dist-edge-${{ env.BUILD_NUMBER }}.zip
path: dist/dist-edge-${{ env.BUILD_NUMBER }}.zip path: dist/dist-edge.zip
- name: Upload source artifact - name: Upload source artifact
uses: actions/upload-artifact@v2 uses: actions/upload-artifact@v2