Skip to content

chore: release v0.1.0 #4

chore: release v0.1.0

chore: release v0.1.0 #4

Workflow file for this run

# Release is automatically triggered when a new tag is pushed to the repository,
# this is done using `npm run bumpp`.
#
# This action will use `changelogithub` which generates a changelog using
# conventional commits, inside the GitHub release.
name: Release
permissions:
contents: write
on:
push:
tags:
- "v*"
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: 18.x
- run: npx changelogithub
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}