Skip to content

Commit

Permalink
chore: try adding a Setup Node.js step and install all dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
njogz committed Aug 22, 2024
1 parent 368c2a1 commit 51f99f1
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,12 @@ jobs:
uses: actions/checkout@v3
with:
persist-credentials: false
- name: Install dependencies
run: npm -g install @semantic-release/git @semantic-release/changelog @semantic-release/github
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 20.x
- name: Install Semantic Release and plugins
run: npm install -g semantic-release @semantic-release/git @semantic-release/changelog @semantic-release/github @semantic-release/commit-analyzer @semantic-release/release-notes-generator
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GH_ADMIN_TOKEN }}
Expand Down

0 comments on commit 51f99f1

Please sign in to comment.