generated from react18-tools/turborepo-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (33 loc) · 1.09 KB
/
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
name: Publish to NPM
# publish only when package json has changed - assuming version upgrade
on:
push:
branches: [main]
paths: "packages/zustand-sync-tabs/package.json"
jobs:
publish:
runs-on: ubuntu-latest
permissions:
packages: write
contents: write
defaults:
run:
working-directory: ./packages/zustand-sync-tabs
steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/setup-node@v3
with:
node-version: 18
registry-url: https://registry.npmjs.org
- run: npm i -g pnpm && pnpm i
name: Install dependencies
- name: Publish to NPM
run: |
pnpm build && cd dist && npm publish
sed -i -e "s/.*name.*/\t\"name\": \"zustand-sync\",/" package.json && npm publish
sed -i -e "s/.*name.*/\t\"name\": \"sync-zustand\",/" package.json && npm publish
sed -i -e "s/.*name.*/\t\"name\": \"sync-tabs-zustand\",/" package.json && npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}