diff options
author | Vendicated <vendicated@riseup.net> | 2022-12-02 14:21:44 +0100 |
---|---|---|
committer | Vendicated <vendicated@riseup.net> | 2022-12-02 14:21:44 +0100 |
commit | 2564ab73f55bd74a1cf34f2c34802605c997727f (patch) | |
tree | efb5281cbef470ea4daeebb0d60f62164afa8803 | |
parent | 5e97cc0fc366acc268665c359a35e7c085364576 (diff) | |
download | Vencord-2564ab73f55bd74a1cf34f2c34802605c997727f.tar.gz Vencord-2564ab73f55bd74a1cf34f2c34802605c997727f.tar.bz2 Vencord-2564ab73f55bd74a1cf34f2c34802605c997727f.zip |
ci: unlisted firefox builds for now
-rw-r--r-- | .github/workflows/build.yml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f7c7363..301f787 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 }} |