-
Notifications
You must be signed in to change notification settings - Fork 136
43 lines (40 loc) · 1.26 KB
/
release.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
name: Release
on: workflow_dispatch
jobs:
create-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- run: npm ci
- run: ./scripts/docs-config.sh "release"
- run: npm run docs
- run: npm run bower
- run: npm run package
- run: node scripts/attach-gh-assets.js
env:
GITHUB_TOKEN: ${{ secrets.GH_AUTH_TOKEN }}
DEBUG: api
- run: node scripts/create-release-tag.js
env:
GH_AUTH_EMAIL: ${{ secrets.GH_AUTH_EMAIL }}
GH_AUTH_NAME: ${{ secrets.GH_AUTH_NAME }}
- run: ./scripts/deploy-docs.sh "release"
env:
GITHUB_TOKEN: ${{ secrets.GH_AUTH_TOKEN }}
GH_AUTH_EMAIL: ${{ secrets.GH_AUTH_EMAIL }}
GH_AUTH_NAME: ${{ secrets.GH_AUTH_NAME }}
create-docs-tag:
needs: create-release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- run: npm ci
- run: ./scripts/docs-config.sh
- run: npm run docs
- run: ./scripts/deploy-docs.sh
env:
GITHUB_TOKEN: ${{ secrets.GH_AUTH_TOKEN }}
GH_AUTH_EMAIL: ${{ secrets.GH_AUTH_EMAIL }}
GH_AUTH_NAME: ${{ secrets.GH_AUTH_NAME }}