adding the build number back into the file name for upload

This commit is contained in:
Joseph Flinn 2021-02-02 09:48:25 -08:00
parent 9cb418e290
commit 6198b6d884
1 changed files with 4 additions and 4 deletions

View File

@ -100,25 +100,25 @@ jobs:
uses: actions/upload-artifact@v2
with:
name: dist-opera-${{ env.BUILD_NUMBER }}.zip
path: dist/dist-opera.zip
path: dist/dist-opera-${{ env.BUILD_NUMBER }}.zip
- name: Upload chrome artifact
uses: actions/upload-artifact@v2
with:
name: dist-chrome-${{ env.BUILD_NUMBER }}.zip
path: dist/dist-chrome.zip
path: dist/dist-chrome-${{ env.BUILD_NUMBER }}.zip
- name: Upload firefox artifact
uses: actions/upload-artifact@v2
with:
name: dist-firefox-${{ env.BUILD_NUMBER }}.zip
path: dist/dist-firefox.zip
path: dist/dist-firefox-${{ env.BUILD_NUMBER }}.zip
- name: Upload edge artifact
uses: actions/upload-artifact@v2
with:
name: dist-edge-${{ env.BUILD_NUMBER }}.zip
path: dist/dist-edge.zip
path: dist/dist-edge-${{ env.BUILD_NUMBER }}.zip
- name: Upload source artifact
uses: actions/upload-artifact@v2