This commit is contained in:
parent
41b644a697
commit
ba5c9b25db
2 changed files with 5 additions and 1 deletions
|
@ -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
|
||||
|
|
2
build.sh
2
build.sh
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue