-
-
Notifications
You must be signed in to change notification settings - Fork 52
37 lines (33 loc) · 1.02 KB
/
npm-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
name: Publish nextjs-toploader to npmjs
on:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Find yarn cache location
id: yarn-cache
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: JS package cache
uses: actions/cache@v1
with:
path: $(( steps.yarn-cache.outputs.dir ))
key: $(( runner.os ))-yarn-$(( hashFiles('**/yarn.lock') ))
restore-keys: |
$(( runner.os ))-yarn-
- name: Install Dependencies
run: yarn install
- name: Compile the Library
run: yarn build-lib
# Setup .npmrc file to publish to npm
- name: Setup the node
uses: actions/setup-node@v4
with:
node-version: '20.11.1'
registry-url: 'https://registry.npmjs.org'
- name: Publish nextjs-toploader on npm
run: npm publish --access public --provenance
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}