-
Notifications
You must be signed in to change notification settings - Fork 13
61 lines (49 loc) · 1.38 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
name: Release
on:
push:
tags:
- '*'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
name: Build and Release
permissions:
contents: write
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '18.x'
- name: Cache Node.js modules
uses: actions/cache@v2
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-node-
${{ runner.OS }}-
- name: Install dependencies
run: npm ci
- name: Build Bundle
env:
NODE_OPTIONS: "--max-old-space-size=4096"
run: npm run build
- name: Zip Bundle
run: zip -qr build build/
- name: Build Offline Bundle
env:
NODE_OPTIONS: "--max-old-space-size=4096"
run: npm run build:offline
- name: Zip Offline Bundle
run: zip -qr offline-docs offline-docs/
- name: Publish Release
uses: ncipollo/release-action@v1
with:
tag: "${{ github.ref_name }}"
body: 'SSR ${{ github.ref_name }} Documentation'
artifacts: "*.zip"
prerelease: true
allowUpdates: true
artifactErrorsFailBuild: true