-
-
Notifications
You must be signed in to change notification settings - Fork 1
79 lines (68 loc) · 1.95 KB
/
npmdeploy.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
75
76
77
78
79
name: Publish to NPM
on:
push:
paths:
- 'package.json'
branches:
- main
workflow_dispatch:
jobs:
Check-Versions:
runs-on: ubuntu-latest
outputs:
outdated: ${{ steps.version_check.outputs.outdated }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 18
always-auth: true
- name: Compares Versions
id: version_check
run: |
node ./scripts/predeploy.js
echo "outdated=$(node ./scripts/predeploy.js)" >> $GITHUB_OUTPUT
Build-Publish:
needs: Check-Versions
if: ${{needs.Check-Versions.outputs.outdated}}
runs-on: ubuntu-latest
steps:
- name: Is Outdated
run: echo ${{needs.Check-Versions.outputs.outdated}}
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 18
always-auth: true
- name: Install pnpm
uses: pnpm/action-setup@v3.0.0
id: pnpm-install
with:
version: latest
run_install: false
- name: Get pnpm store directory
id: pnpm-cache
run: |
pnpm store path
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
- uses: actions/cache@v4
name: Setup pnpm cache
with:
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-
- name: Install Dependencies
run: pnpm i
- name: Build package
run: pnpm run build
- name: SetupAuth
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
- name: Publish package on NPM 📦
run: pnpm publish
env:
NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}