ci: unlisted firefox builds for now

This commit is contained in:
Vendicated 2022-12-02 14:21:44 +01:00
parent 5e97cc0fc3
commit 2564ab73f5
No known key found for this signature in database
GPG Key ID: EC781ADFB93EFFA3
1 changed files with 4 additions and 3 deletions

View File

@ -1,4 +1,4 @@
name: Build latest
name: Build DevBuild
on:
push:
branches:
@ -9,6 +9,7 @@ on:
- browser/**
- scripts/build/**
- package.json
- pnpm-lock.yaml
env:
FORCE_COLOR: true
@ -21,7 +22,7 @@ jobs:
- uses: pnpm/action-setup@v2 # Install pnpm using packageManager key in package.json
- name: Use Node.js 18
- name: Use Node.js 19
uses: actions/setup-node@v3
with:
node-version: 19
@ -35,7 +36,7 @@ jobs:
- name: Sign firefox extension
run: |
pnpx web-ext sign --api-key $WEBEXT_USER --api-secret $WEBEXT_SECRET --channel=listed
pnpx web-ext sign --api-key $WEBEXT_USER --api-secret $WEBEXT_SECRET --channel=unlisted
env:
WEBEXT_USER: ${{ secrets.WEBEXT_USER }}
WEBEXT_SECRET: ${{ secrets.WEBEXT_SECRET }}