-
Notifications
You must be signed in to change notification settings - Fork 35
69 lines (61 loc) · 2.4 KB
/
publish-prod-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
name: Publish Packages to NPM Registry
on:
workflow_call:
secrets:
NPM_TOKEN:
required: true
jobs:
publish_prod_react:
if: "!contains(github.event.head_commit.message, 'ci skip')"
# The type of runner that the job will run on
runs-on: ubuntu-latest
timeout-minutes: 80
permissions:
contents: read
packages: write
deployments: write
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- name: Setup kernel for react native, increase watchers
run: echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
- uses: actions/setup-node@v2
with:
node-version: '20.13.1'
- name: Cache pnpm modules
uses: actions/cache@v2
with:
path: ~/.pnpm-store
key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-
- uses: pnpm/[email protected]
env:
CI: false
with:
version: 8.9.0
run_install: true
- name: Publish @impler/client package on NPM 📦
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
working-directory: packages/client
run: |
npm config set --workspaces=false --include-workspace-root registry https://registry.npmjs.org/
npm config set --workspaces=false --include-workspace-root //registry.npmjs.org/:_authToken=$NPM_TOKEN
npm publish --access public
- name: Publish @impler/react package on NPM 📦
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
working-directory: packages/react
run: |
npm config set --workspaces=false --include-workspace-root registry https://registry.npmjs.org/
npm config set --workspaces=false --include-workspace-root //registry.npmjs.org/:_authToken=$NPM_TOKEN
npm publish --access public
- name: Publish @impler/angular package on NPM 📦
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
working-directory: packages/angular
run: |
npm config set --workspaces=false --include-workspace-root registry https://registry.npmjs.org/
npm config set --workspaces=false --include-workspace-root //registry.npmjs.org/:_authToken=$NPM_TOKEN
npm publish --access public