-
-
Notifications
You must be signed in to change notification settings - Fork 1
53 lines (44 loc) · 1.25 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
41
42
43
44
45
46
47
48
49
50
51
52
53
name: Release 🚀
on:
push:
branches:
- main
workflow_dispatch:
permissions:
pull-requests: write
contents: write
issues: write
id-token: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
jobs:
release:
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' && !contains(github.event.head_commit.message, '[skip ci]')}}
runs-on: ubuntu-latest
steps:
- name: Checkout 🧳
uses: actions/checkout@v4
- name: Setup PNPM ⚙️
uses: AkashRajpurohit/.github/.github/actions/setup-pnpm@main
with:
node_version: 20
pnpm_version: 8
- name: Install dependencies ⏬
run: pnpm install --no-frozen-lockfile
- name: Test 🔫
run: pnpm run test:coverage
- name: Build ⏰
run: pnpm build
env:
NODE_ENV: production
- name: Release 🚀
id: changesets
uses: changesets/action@v1
with:
version: pnpm changeset version
publish: pnpm changeset publish
commit: "ci: :package: release"
title: "ci: :package: release"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}