chore(release): Include comment about why we need to be in version 14 #18
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
push: | |
branches: | |
# - main | |
- chore-semantic-release | |
jobs: | |
release: | |
name: "Release" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
# Workaround for issue: https://github.com/cycjimmy/semantic-release-action/issues/159 | |
# Had to pin to version 14 | |
- name: "Pin node version" | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '14' | |
- name: Semantic Release | |
uses: cycjimmy/semantic-release-action@v4 | |
with: | |
extra_plugins: | | |
@semantic-release/commit-analyzer | |
@semantic-release/release-notes-generator | |
@semantic-release/github | |
semantic-release-hackage | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
HACKAGE_TOKEN: ${{ secrets.HACKAGE_TOKEN }} |