From 7cb4ec9c0a2ab66455d30860222d1474c8af5487 Mon Sep 17 00:00:00 2001 From: Yurii Shynbuiev Date: Mon, 8 Jul 2024 17:20:27 +0700 Subject: [PATCH] fix: add another node version to run the actions Signed-off-by: Yurii Shynbuiev --- .github/workflows/release.yml | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a15f80688..2c9585027 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -27,11 +27,6 @@ jobs: fetch-depth: 0 persist-credentials: false - - name: Setup Node.js - uses: actions/setup-node@v3 - with: - node-version: "lts/*" - - uses: crazy-max/ghaction-import-gpg@v5 id: import_gpg with: @@ -49,12 +44,23 @@ jobs: username: ${{ env.GITHUB_ACTOR }} password: ${{ env.GITHUB_TOKEN }} + - name: Setup Node.js + uses: actions/setup-node@v3 + with: + node-version: "16" + - name: Build ADRs run: | cd ./identus-cloud-agent npm install -g log4brains export NODE_OPTIONS=--openssl-legacy-provider log4brains build --out ../static/adrs --basePath /adrs touch ../static/adrs/.nojekyll + + - name: Setup Node.js + uses: actions/setup-node@v3 + with: + node-version: "lts/*" + - name: Release env: GIT_AUTHOR_EMAIL: ${{ steps.import_gpg.outputs.email }}