-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (33 loc) · 930 Bytes
/
publish.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
name: Publish package
on:
push:
branches:
- "main"
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Enable yarn latest using corepack
run: corepack enable
- name: Install dependencies
run: yarn
- name: Run Specs
run: yarn test
- name: Build
run: yarn tailwind && yarn build
- name: Setup .yarnrc.yml
run: |
yarn config set npmAlwaysAuth true
yarn config set npmAuthToken $NPM_AUTH_TOKEN
env:
NPM_AUTH_TOKEN: ${{ secrets.NPM_AWELL_DESIGN_SYSTEM_CI }}
- name: Publish to NPM Registry
run: yarn npm publish