From 6b090cacd969efdc73ef1074ee72c3324ad8cb26 Mon Sep 17 00:00:00 2001 From: Elmar Kresse Date: Tue, 20 Jan 2026 01:01:56 +0100 Subject: [PATCH] feat: Add Gitea workflow to build and release the Firefox extension. --- .gitea/workflows/build.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index f55429f..fa68fbe 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -13,7 +13,12 @@ on: jobs: build: runs-on: docker + container: + image: node:20-alpine steps: + - name: Install dependencies + run: apk add --no-cache zip jq + - name: Checkout repository uses: actions/checkout@v4 @@ -54,9 +59,13 @@ jobs: release: runs-on: docker + container: + image: node:20-alpine needs: build if: startsWith(github.ref, 'refs/tags/v') steps: + - name: Install dependencies + run: apk add --no-cache jq - name: Checkout repository uses: actions/checkout@v4