Skip to content

fixed a typo that caused an error when saving properties #303

fixed a typo that caused an error when saving properties

fixed a typo that caused an error when saving properties #303

Workflow file for this run

name: github pages
on:
push:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3.5.0
- name: Setup Node.js environment
uses: actions/setup-node@v3.6.0
with:
# Version Spec of the version to use. Examples: 12.x, 10.15.1, >=10.15.0
node-version: '16.x'
- name: Cache dependencies
uses: actions/cache@v4.2.3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- run: git pull --recurse-submodules
- run: git submodule update --init --remote
- run: export VUE_APP_API_LOGIN_ENABLED=false
- run: export DOCS_BASE=/cass-editor/docs/
- run: npm ci
- run: npm run docs:build
- run: npm run build
- name: deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist