remove NODE_OPTION on workflow build

This commit is contained in:
Ulf Gebhardt 2023-01-03 01:44:35 +01:00
parent 2eecf8783d
commit b3da37d01c
Signed by: ulfgebhardt
GPG Key ID: DA6B843E748679C9
2 changed files with 2 additions and 1 deletions

View File

@ -18,6 +18,6 @@ jobs:
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
TARGET_REPO: username/repo
TARGET_BRANCH: master
BUILD_SCRIPT: npm install && npm run build
BUILD_SCRIPT: npm install && npm run build:workflow
BUILD_DIR: docs/.vuepress/dist
CNAME: https://www.it4c.dev

View File

@ -5,6 +5,7 @@
"main": "index.js",
"scripts": {
"build": "NODE_OPTIONS=--openssl-legacy-provider vuepress build docs",
"build:workflow": "vuepress build docs",
"dev": "NODE_OPTIONS=--openssl-legacy-provider vuepress dev docs",
"test": "echo \"Error: no test specified\" && exit 1"
},