-
-
Notifications
You must be signed in to change notification settings - Fork 25
56 lines (48 loc) · 1.49 KB
/
release.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
48
49
50
51
52
53
54
55
56
name: Latest Release Build
on:
release:
types:
- published
jobs:
build:
env:
ADDON_ID: "{14a15c41-13f4-498e-986c-7f00435c4d00}"
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'yarn'
- name: Install modules
run: yarn
- name: Build Chrome
run: |
# Extract version number from the tag
VERSION=$(echo -n "${{ github.ref }}" | sed 's/[refs\/tagv]//g' | sed 's/-.*//')
yarn build:chrome
yarn package
- name: Upload Chrome package to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: dist/HyperChat-Chrome.zip
asset_name: HyperChat-Chrome.zip
tag: ${{ github.ref }}
overwrite: true
- name: Build Firefox
run: |
# Extract version number from the tag
VERSION=$(echo -n "${{ github.ref }}" | sed 's/[refs\/tagv]//g' | sed 's/-.*//')
yarn build:firefox
yarn package
- name: Upload Firefox package to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: dist/HyperChat-Firefox.zip
asset_name: HyperChat-Firefox.zip
tag: ${{ github.ref }}
overwrite: true