-
Notifications
You must be signed in to change notification settings - Fork 2
50 lines (40 loc) · 1.26 KB
/
release.yml
File metadata and controls
50 lines (40 loc) · 1.26 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
name: deploy
on:
workflow_dispatch:
permissions:
contents: write # necesario para gh-pages y semantic-release (github plugin)
packages: read
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # semantic-release necesita el historial/tags
- name: Use Node.js 18
uses: actions/setup-node@v4
with:
node-version: '18'
cache: 'npm'
registry-url: 'https://registry.npmjs.org'
- name: Install deps
run: npm ci
# Build de PLEX
- name: Build library
run: npm run build
# Docs (Compodoc) -> dist/doc
- name: Build docs
run: npm run build:doc
# Publicar docs a gh-pages
- name: Deploy docs to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
# se puede cambiar a secrets.DEPLOY_TOKEN para uso de token propio
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: dist/doc
# publicación a npm/gitHub releases con semantic-release
- name: semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # (o DEPLOY_TOKEN)
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release