From cb08ddd6f9754e14499f9d2862ca97b69781f063 Mon Sep 17 00:00:00 2001 From: Daniel Sinclair <4412473+DanielSinclair@users.noreply.github.com> Date: Sat, 11 Jan 2025 01:51:54 -0500 Subject: [PATCH] fix: firefox ci source artifact upload (#1802) --- .github/workflows/publish-prod-firefox.yml | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/.github/workflows/publish-prod-firefox.yml b/.github/workflows/publish-prod-firefox.yml index a5657b99d9..4690b52e2b 100644 --- a/.github/workflows/publish-prod-firefox.yml +++ b/.github/workflows/publish-prod-firefox.yml @@ -33,15 +33,20 @@ jobs: run: yarn firefox:build - name: Update the manifest run: yarn update-manifest prod - - name: Archive the build artifact - uses: actions/upload-artifact@v4 - with: - name: rainbowbx-firefox-v${{ env.release_version }} - path: build/ - name: Zip source run: yarn zip:source + - name: Archive the source artifact + uses: actions/upload-artifact@v4 + with: + name: rainbowbx-firefox-v${{ env.release_version }}-source + path: ./rainbowbx-source.zip - name: Zip build run: yarn firefox:zip + - name: Archive the build artifact + uses: actions/upload-artifact@v4 + with: + name: rainbowbx-firefox-v${{ env.release_version }} + path: ./rainbowbx.xpi - name: Submit to the firefox addons store uses: PlasmoHQ/bpp@v3.7.0 with: