-
Notifications
You must be signed in to change notification settings - Fork 93
60 lines (49 loc) · 1.56 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
name: Release
permissions:
contents: write
on: workflow_dispatch
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Set node
uses: actions/setup-node@v4
with:
node-version: 18
cache: pnpm
registry-url: 'https://registry.npmjs.org'
- name: Setup npmrc
# https://github.com/changesets/action/issues/98#issuecomment-917292485
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" >> .npmrc
- name: Install dependencies
run: pnpm i
- name: Prepare for release
run: |
pnpm run format
pnpm run lint
pnpm run type-check
pnpm run clean
pnpm run build
pnpm run publint
- uses: actions/github-script@v7
id: version_to_release
with:
result-encoding: string
script: |
const fs = require('fs');
const packageJson = JSON.parse(fs.readFileSync('./packages/vite-plugin-checker/package.json', 'utf8'));
return packageJson.version;
- name: Publish to NPM
run: |
git tag vite-plugin-checker@${{ steps.version_to_release.outputs.result }}
git push origin ${{ steps.version_to_release.outputs.result }}
pnpm -r publish --no-git-checks
- name: GitHub release
run: pnpx changelogithub
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}