-
-
Notifications
You must be signed in to change notification settings - Fork 2
36 lines (36 loc) · 1.05 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
name: Latest Release Build
on:
release:
types:
- released
- prereleased
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: 'recursive'
- uses: c-hive/gha-yarn-cache@v1
- name: Install modules
run: yarn
- name: Build extensions
run: |
VERSION=$(echo -n ${{ github.ref }} | sed 's/[refs\/tagv]//g') yarn build
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: 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