-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (40 loc) · 1.17 KB
/
ng-dynamic-config-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
39
40
41
42
43
44
45
46
47
48
name: Publish ng-dynamic-config to npm
on:
push:
branches:
- my-libs
paths:
- "ng-dynamic-config/**"
- ".github/workflows/ng-dynamic-config-publish.yml"
jobs:
publish-ng-dynamic-config:
runs-on: ubuntu-latest
steps:
# Checkout il codice del repository
- name: Checkout code
uses: actions/checkout@v3
# Configura Node.js
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: "18"
cache: "npm"
cache-dependency-path: "ng-dynamic-config/package-lock.json"
# Installa le dipendenze della libreria
- name: Install dependencies
run: |
cd ng-dynamic-config
npm install
# Build della libreria
- name: Build the library
run: |
cd ng-dynamic-config
npm run build
# Autentica su npm
- name: Authenticate to npm
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
# Pubblica la libreria su npm
- name: Publish to npm
run: |
cd ng-dynamic-config/dist/ng-dynamic-config
npm publish --access public