-
Notifications
You must be signed in to change notification settings - Fork 1
53 lines (41 loc) · 1.19 KB
/
release.yml
File metadata and controls
53 lines (41 loc) · 1.19 KB
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
name: Release
on:
push:
tags: [ 'v*' ]
jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v5
with:
node-version: 22
cache: npm
- name: Enable corepack
run: corepack enable
- name: Install Yarn
run: corepack install
- name: Get Yarn cache folder
id: yarn-cache-dir
run: echo "cache-dir=$(corepack yarn config get cacheFolder)" >> $GITHUB_OUTPUT
- name: Restore Yarn cache
uses: actions/cache@v4
with:
path: ${{ steps.yarn-cache-dir.outputs.cache-dir }}
key: yarn-${{ runner.os }}-${{ hashFiles('yarn.lock') }}
- name: Install dependencies
run: corepack yarn install --immutable
- name: Build
run: corepack yarn run build
- name: web-ext lint
run: corepack yarn exec web-ext lint --pretty --output=json
- name: Create a source zip
run: corepack yarn run archive
- run: npx changelogithub@13.16.0 --assets 'dist/*.xpi' --assets 'dist/*.zip'
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}