From a30039f54bb3269fb6b076e550a9a935f521afe3 Mon Sep 17 00:00:00 2001 From: nea Date: Thu, 1 Dec 2022 07:48:55 +0100 Subject: Add web signing to Github Action workflow --- .github/workflows/build.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4894829..41b03ed 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -33,6 +33,12 @@ jobs: - name: Build web run: pnpm buildWeb --standalone + - name: Sign firefox extension + run: pnpm web-ext sign --api-key $WEBEXT_USER --api-secret $WEBEXT_SECRET + env: + WEBEXT_USER: ${{ secrets.WEBEXT_USER }} + WEBEXT_SECRET: ${{ secrets.WEBEXT_SECRET }} + - name: Build run: pnpm build --standalone -- cgit