Skip to content

Commit

Permalink
Release by 22.12.2023 (#945)
Browse files Browse the repository at this point in the history
  • Loading branch information
Yakutoc authored Dec 22, 2023
2 parents 6ffcac5 + e7c769e commit 8ebdb19
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion actions/versionate-docs/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ outputs:
result:
description: Process done with success.
runs:
using: node12
using: node16
main: 'lib/main.js'
branding:
icon: check-square
Expand Down
4 changes: 3 additions & 1 deletion actions/versionate-docs/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ const createBuildFolder = async () => {
const buildDocumentation = async (docpckgName: string, prefix: string, version: string) => {
console.log(`> Building apllication for "${docpckgName}".`);

const build = await exec(`VERSION_NAME=${prefix}-${version} npm run build --prefix="./website/${docpckgName}"`);
const build = await exec(
`NODE_OPTIONS=--openssl-legacy-provider VERSION_NAME=${prefix}-${version} npm run build --prefix="./website/${docpckgName}"`,
);

console.log(build.stdout, build.stderr);

Expand Down

0 comments on commit 8ebdb19

Please sign in to comment.