Skip to content

Commit

Permalink
fix: Semantic release version in actions plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
laurence79 committed Apr 21, 2023
1 parent b5fdd4f commit 78dd1aa
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,22 +14,23 @@ jobs:
new_release_git_tag: ${{ steps.semantic.outputs.new_release_git_tag }}
steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v1
uses: actions/setup-node@v2
with:
node-version: '16'
node-version: "18"
- id: semantic
name: Semantic Release
uses: cycjimmy/[email protected]
with:
semantic_version: "18.0.0"
extra_plugins: |
@semantic-release/changelog
@semantic-release/npm
@semantic-release/exec
@semantic-release/git
env:
GITHUB_TOKEN: ${{ secrets.GPR_TOKEN }}
GITHUB_TOKEN: ${{ secrets.PAT }}

build:
name: Build
Expand Down

0 comments on commit 78dd1aa

Please sign in to comment.