Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release by 22.12.2023 #945

Merged
merged 1 commit into from
Dec 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading