-
Notifications
You must be signed in to change notification settings - Fork 9
74 lines (62 loc) · 1.92 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
name: Release
on:
push:
branches:
- master
concurrency: ${{ github.workflow }}-${{ github.ref }}
env:
CI: true
PNPM_CACHE_FOLDER: .pnpm-store
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: setup caching
uses: actions/cache@v2
with:
path: ${{ env.PNPM_CACHE_FOLDER }}
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-
- name: setup pnpm
uses: pnpm/action-setup@v2.0.1
with:
version: 6.x
- name: setup node.js
uses: actions/setup-node@v2
with:
node-version: 16.x
cache: "pnpm"
- name: Set up NPM credentials
run: echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: setup pnpm config
run: pnpm config set store-dir $PNPM_CACHE_FOLDER
- name: Install Dependencies
run: pnpm install --no-frozen-lockfile && ls -a && git status
- name: Run Tests
run: pnpm ci:test
- name: Create versions PR & prepare publish
id: changesets
uses: changesets/action@v1
# if: github.ref == 'refs/heads/master'
with:
status: git status
# Custom versioning script in package.json
version: pnpm ci:version
# Custom versioning script in package.json
publish: pnpm ci:publish
# Messages
commit: "chore(deploy): Release"
title: "chore(deploy): Release"
env:
# npm publish token required for publishing. Set this in secrets
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
# automatically available in actions
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}