Reuse signing key
All checks were successful
Build / build (push) Successful in 19s

This commit is contained in:
Mathieu Strypsteen 2024-02-18 11:16:27 +01:00
parent 41b644a697
commit ba5c9b25db
2 changed files with 5 additions and 1 deletions

View file

@ -8,6 +8,10 @@ jobs:
uses: actions/checkout@v4
- name: Install dependencies
run: npm install
- name: Write signing key
run: echo "$SIGNING_KEY" > key.pem
env:
SIGNING_KEY: ${{secrets.SIGNING_KEY}}
- name: Build extension
run: ./build.sh
- name: Upload extension

View file

@ -2,5 +2,5 @@
set -e
rm -rf out proxy-settings.crx
npx tsc
cp manifest.json *.html out
cp manifest.json ./*.html out
npx crx3 -p key.pem -o proxy-settings.crx out