use legacy build script

This commit is contained in:
Ulf Gebhardt 2023-04-03 14:56:27 +02:00
parent 186ad93e9b
commit a40a524ab5
Signed by: ulfgebhardt
GPG Key ID: DA6B843E748679C9
2 changed files with 2 additions and 1 deletions

View File

@ -23,6 +23,6 @@ jobs:
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
TARGET_REPO: Ocelot-Social-Community/ocelot.social
TARGET_BRANCH: gh-pages
BUILD_SCRIPT: npm install && npm run build
BUILD_SCRIPT: npm install && npm run build-legacy
BUILD_DIR: docs/.vuepress/dist
CNAME: https://www.ocelot.social

View File

@ -5,6 +5,7 @@
"main": "index.js",
"scripts": {
"build": "NODE_OPTIONS=--openssl-legacy-provider vuepress build docs",
"build-legacy": "vuepress build docs",
"dev": "NODE_OPTIONS=--openssl-legacy-provider vuepress dev docs",
"test": "textlint \"*.md\" \"docs/**/*.md\""
},