-
-
Notifications
You must be signed in to change notification settings - Fork 5
87 lines (69 loc) · 1.74 KB
/
release.yml
File metadata and controls
87 lines (69 loc) · 1.74 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
name: Release
on:
release:
types: [published]
permissions:
# See http://docs.npmjs.com/trusted-publishers
id-token: write
contents: read
jobs:
tag:
name: Add/update 'latest' tag
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Run latest-tag
uses: EndBug/latest-tag@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
docs:
name: Update docs
runs-on: ubuntu-latest
needs: tag
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Setup node
uses: actions/setup-node@v6
with:
node-version: 18
cache: npm
- name: Install dependencies
run: npm ci
- name: Build documentation
run: npm run docs
- name: Deploy documentation
uses: dbots-pkg/action-docs@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
publish-npm:
name: Publish on NPM
runs-on: ubuntu-latest
needs: docs
steps:
- uses: actions/checkout@v5
- name: Set up Node.js for NPM
uses: actions/setup-node@v6
with:
node-version: 18
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- run: npm publish
publish-gpr:
name: Publish on GPR
runs-on: ubuntu-latest
needs: docs
steps:
- uses: actions/checkout@v5
- name: Set up Node.js for GPR
uses: actions/setup-node@v6
with:
node-version: 18
registry-url: 'https://npm.pkg.github.com/'
scope: '@dbots-pkg'
- run: npm ci
- run: npm run gpr
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}