Merge pull request #19 from khaykingleb/improve-links #32
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: | |
- master | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
name: Run release | |
steps: | |
- name: Checkout code so that it is available to use in the executing runner | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 21.7.3 | |
- name: Install Semantic Release and plugins | |
run: | | |
npm install -g semantic-release@23 \ | |
conventional-changelog-conventionalcommits@7 \ | |
@semantic-release/release-notes-generator@13 \ | |
@semantic-release/commit-analyzer@12 \ | |
@semantic-release/git@10 \ | |
@semantic-release/exec@6 | |
- name: Semantic Release | |
run: npx semantic-release | |
env: | |
GITHUB_TOKEN: ${{ secrets.PAT_GITHUB }} |