-
-
Notifications
You must be signed in to change notification settings - Fork 112
34 lines (29 loc) · 926 Bytes
/
releases.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
name: Releases
on:
push:
tags:
- "*"
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- name: Write package version json
run: cat <<< $(jq '.version="${{github.ref_name}}"' package.json ) > package.json
- name: Write manifest version json
run: cat <<< $(jq '.version="${{github.ref_name}}"' public/manifest.json ) > public/manifest.json
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build-zip
- uses: ncipollo/release-action@v1
with:
artifacts: "*.zip"
body: "[Change Log](https://github.com/ttop32/MouseTooltipTranslator/blob/main/doc/description.md#change-log)"