chore: release v0.3.6 #5
Workflow file for this run
This file contains hidden or 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
# Inspired by Elk.Zone - Release Action | |
# https://github.com/elk-zone/elk/blob/main/.github/workflows/release.yml | |
# This action creates a release with every new tag that is created. | |
# It attaches release notes to the release which are based on the github commits / pull requests. | |
name: Release Notes | |
permissions: | |
contents: write | |
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '22.x' | |
- run: npx changelogithub | |
env: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |