-
-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (36 loc) · 1.07 KB
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: "Build and upload artifacts"
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Cache pnpm modules
uses: actions/cache@v3
with:
path: ~/.pnpm-store
key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-
- uses: pnpm/[email protected]
with:
version: latest
run_install: true
- name: Use Node.js 16.x
uses: actions/[email protected]
with:
node-version: 16.x
cache: "pnpm"
- name: Build and zip extension artifact
run: node build.js
- name: 'Create pem file'
run: |
echo "${{ secrets.EXTENSION_PEM }}" > better_nexus.pem
- name: "Pack extension as crx"
run: bash scripts/crx.sh build/x/* better_nexus.pem
- name: Upload dist folder to github artifacts
uses: actions/upload-artifact@v2
with:
name: "browser-extensions"
path: dist/*
retention-days: 3