-
Notifications
You must be signed in to change notification settings - Fork 8
50 lines (48 loc) · 1.39 KB
/
publish-npm-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
name: Publish Package to npmjs
on:
push:
tags:
- '*'
paths:
- "packages/**"
workflow_run:
workflows: ["Build"]
types: [requested]
branches:
- 'angular-17'
jobs:
build:
runs-on: ubuntu-latest
environment:
name: prod
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.ref_name }}
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v3
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
- run: yarn
- run: yarn build
- run: npm publish --access public --tag next
working-directory: ./dist/packages/store
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- run: npm publish --access public --tag next
working-directory: ./dist/packages/core
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- run: npm publish --access public --tag next
working-directory: ./dist/packages/echarts
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- run: npm publish --access public --tag next
working-directory: ./dist/packages/angular
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- run: npm publish --access public --tag next
working-directory: ./dist/packages/xmla
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}