-
Notifications
You must be signed in to change notification settings - Fork 194
47 lines (37 loc) · 956 Bytes
/
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
38
39
40
41
42
43
44
45
46
47
name: Build extension packages
on:
push:
branches:
- master
pull_request:
types: [opened, synchronize]
jobs:
build:
runs-on: ubuntu-latest
name: build-prod
env:
ALBY_API_URL: "https://api.getalby.com"
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "18"
cache: "yarn"
- run: yarn install
- name: Build firefox
run: yarn build:firefox
- name: Build chrome
run: yarn build:chrome
- name: Archive firefox production zip file
uses: actions/upload-artifact@v3
with:
name: firefox.xpi
path: dist/production/firefox.xpi
- name: Archive chrome production zip file
uses: actions/upload-artifact@v3
with:
name: chrome.zip
path: dist/production/chrome.zip