From a22ad21b93d1274619fbe88f0fa201a579fd1276 Mon Sep 17 00:00:00 2001 From: Dominik <48656177+agresdominik@users.noreply.github.com> Date: Thu, 13 Nov 2025 20:20:34 +0100 Subject: [PATCH] Add GitHub Actions workflow for Firefox extension build --- .github/workflows/main.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..92fa2bd --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,31 @@ +name: Build Firefox Extension + +on: + push: + branches: + - main + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Set up Node + uses: actions/setup-node@v4 + with: + node-version: 20 + + - name: Install dependencies + run: npm install + + - name: Build XPI via makefile + run: make package + + - name: Upload XPI artifact + uses: actions/upload-artifact@v4 + with: + name: fileleak-xpi + path: out/fileleak.xpi