From d0e4dcc6ef057f4c680838d4f8ac8e099a166225 Mon Sep 17 00:00:00 2001 From: FrostyBiscuit Date: Sun, 16 Feb 2025 13:04:17 +0100 Subject: Initial push with version 0.1.1 --- .github/workflows/deploy.yaml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/deploy.yaml (limited to '.github') diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml new file mode 100644 index 0000000..275717f --- /dev/null +++ b/.github/workflows/deploy.yaml @@ -0,0 +1,30 @@ +name: Build and Sign Extension + +on: + push: + branches: + - main + +jobs: + build-and-sign: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Set up Node.js + uses: actions/setup-node@v3 + with: + node-version: 22 + + - name: Install dependencies + run: npm install + + - name: Build Extension + run: npm run build + + - name: Sign Extension + env: + FIREFOX_API_KEY: ${{ secrets.FIREFOX_API_KEY }} + FIREFOX_API_SECRET: ${{ secrets.FIREFOX_API_SECRET }} + run: npm run sign -- cgit v1.2.3