Skip to content

Commit

Permalink
fix: add another node version to run the actions
Browse files Browse the repository at this point in the history
Signed-off-by: Yurii Shynbuiev <yurii.shynbuiev@iohk.io>
  • Loading branch information
yshyn-iohk committed Jul 8, 2024
1 parent cd21f12 commit 7cb4ec9
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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 }}
Expand Down

0 comments on commit 7cb4ec9

Please sign in to comment.