From 6198b6d884a7efb294a415db33ce06522140289c Mon Sep 17 00:00:00 2001 From: Joseph Flinn Date: Tue, 2 Feb 2021 09:48:25 -0800 Subject: [PATCH] adding the build number back into the file name for upload --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2251932e18..59a6f91549 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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