-
-
Notifications
You must be signed in to change notification settings - Fork 138
71 lines (56 loc) · 1.87 KB
/
packages.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
name: Deploy Packages
on:
push:
branches:
- develop
- main
jobs:
deploy-packages:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18
- uses: pnpm/action-setup@v2
name: Install pnpm
with:
version: 8
run_install: false
- uses: gittools/actions/gitversion/setup@v0
with:
versionSpec: "5.x"
- name: Install Dependencies
run: pnpm install
- name: Check
run: |
pnpm -r check:prettier
pnpm -r check:eslint
- name: Prepare Build
run: |
pnpm -r inline-wasm
pnpm -r fix:inline-wasm
pnpm -r convert
pnpm -r generate
- name: Build
run: pnpm -r build
- name: Gitversion
id: gitversion
uses: gittools/actions/gitversion/execute@v0
- name: Set Version
run: pnpm -r exec json -f "package.json" -I -e 'this.version = "${{ steps.gitversion.outputs.fullSemVer }}"'
- name: Set publishing config
run: pnpm config set '//registry.npmjs.org/:_authToken' "${{ secrets.NPM_TOKEN }}"
- name: Deploy Uikit Package
working-directory: ./packages/uikit
run: pnpm publish --access public --no-git-checks --tag ${{ steps.gitversion.outputs.preReleaseLabel == '' && 'latest' || steps.gitversion.outputs.preReleaseLabel }}
- name: Deploy Uikit-Lucide Package
working-directory: ./packages/icons/lucide
run: pnpm publish --access public --no-git-checks --tag ${{ steps.gitversion.outputs.preReleaseLabel == '' && 'latest' || steps.gitversion.outputs.preReleaseLabel }}