-
-
Notifications
You must be signed in to change notification settings - Fork 2
49 lines (49 loc) · 1.64 KB
/
main.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
name: Latest Release Build
on:
release:
types:
- published
jobs:
build:
env:
ADDON_ID: "{20f2dcdf-6f8d-4aeb-862b-b13174475d9c}"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: 'recursive'
- uses: c-hive/gha-yarn-cache@v1
- uses: actions/setup-node@v3
with:
node-version: 16
- name: Install modules
run: |
sudo apt install jq
yarn
VERSION=$(echo -n "${{ github.ref }}" | sed 's/[refs\/tagv]//g' | sed 's/-.*//')
jq --arg version $VERSION '.version = $version' src/manifest.json > src/manifest.json.tmp
mv src/manifest.json.tmp src/manifest.json
- name: Build Chrome
run: |
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/YtcFilter-Chrome.zip
asset_name: YtcFilter-Chrome.zip
tag: ${{ github.ref }}
overwrite: true
- name: Build Firefox
run: |
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/YtcFilter-Firefox.zip
asset_name: YtcFilter-Firefox.zip
tag: ${{ github.ref }}
overwrite: true