-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (42 loc) · 1.09 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
name: Publish to npm on new tag
on:
# push:
# tags:
# - '*'
push:
branches:
- "main"
pull_request:
branches:
- main
jobs:
publish:
runs-on: self-hosted
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Extract version
id: extract_version
uses: Saionaro/[email protected]
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
check-latest: true
cache: yarn
scope: '@abmf'
- name: Install dependencies
if: steps.yarn-cache.outputs.cache-hit != 'true'
run: |
yarn install --frozen-lockfile
shell: bash
- name: Print version
run: echo ${{ steps.extract_version.outputs.version }}
- name: Build
run: yarn build
- name: Publish to npm
run: |
echo "//registry.npmjs.org/:_authToken=\${NPM_TOKEN}" >> .npmrc
yarn exec lerna publish --force-publish --access public
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}