-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (38 loc) · 1.32 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
on:
push:
tags:
- 'v*'
name: Release
jobs:
build:
name: Upload Release Asset
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set output filename
id: set-chrome-filename
run: echo "FILENAME=treetop-chrome-${GITHUB_REF#refs/*/}.zip" >> $GITHUB_OUTPUT
- name: Set output filename
id: set-firefox-filename
run: echo "FILENAME=treetop-firefox-${GITHUB_REF#refs/*/}.zip" >> $GITHUB_OUTPUT
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- run: npm ci
- run: TREETOP_TARGET=chrome npm run build
- run: TREETOP_TARGET=firefox npm run build
- run: npx web-ext build --source-dir dist/chrome --no-input --filename "${{ steps.set-chrome-filename.outputs.FILENAME}}"
- run: npx web-ext build --source-dir dist/firefox --no-input --filename "${{ steps.set-firefox-filename.outputs.FILENAME}}"
- name: Create Release
id: create_release
uses: ncipollo/release-action@v1
with:
artifacts: ./web-ext-artifacts/*.zip
artifactContentType: application/zip
artifactErrorsFailBuild: true
generateReleaseNotes: true
token: ${{ secrets.GITHUB_TOKEN }}