Skip to content

bump: 0.33.19

bump: 0.33.19 #308

Workflow file for this run

name: Release
on:
push:
tags:
- "v*.*.*"
jobs:
github:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Generate Changelog
id: changelog
uses: requarks/[email protected]
with:
token: ${{ github.token }}
tag: ${{ github.ref_name }}
writeToFile: false
restrictToTypes: feat,fix,revert
- name: Upload GitHub Release
run: gh release create "${GITHUB_REF}" --notes "${CHANGELOG}"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CHANGELOG: "${{ steps.changelog.outputs.changes }}"