From c8df0b4e556bb6425883415b6849a50daaaa4810 Mon Sep 17 00:00:00 2001 From: Andreas61129 <84268717+Andreas61129@users.noreply.github.com> Date: Sat, 6 Apr 2024 10:00:53 +0200 Subject: [PATCH] Define NODE_OPTIONS in workflow Add NODE_OPTIONS according to https://github.com/actions/setup-node/issues/356 for the specific step of the workflow. --- .github/workflows/main.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 66c8dac..51895be 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -11,6 +11,8 @@ jobs: run: | npm install ./node_modules/.bin/ng build --prod --output-path build --base-href="https://linkit-tech.github.io/signature-generator/" + env: + NODE_OPTIONS: "--openssl-legacy-provider" - name: Deploy 🚀 uses: JamesIves/github-pages-deploy-action@4.1.4