Support offline search #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |