-
Notifications
You must be signed in to change notification settings - Fork 6
57 lines (47 loc) · 1.21 KB
/
Copy pathrelease.yml
File metadata and controls
57 lines (47 loc) · 1.21 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
54
55
56
57
name: Release
on:
push:
branches: [main]
concurrency:
group: release-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: write
issues: write
pull-requests: write
jobs:
ci:
name: Precheck
uses: ./.github/workflows/ci.yml
package:
name: Package Check
needs: ci
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
- name: Verify npm package can be packed
run: npm pack --dry-run
release:
name: Semantic Release
needs: [ci, package]
runs-on: ubuntu-latest
timeout-minutes: 15
if: github.repository == 'izzzzzi/izTeamSlots'
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 22
- name: Install semantic-release plugins
run: npm install --no-save semantic-release @semantic-release/changelog @semantic-release/git @semantic-release/github
- name: Release
run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}