Skip to content

feat: rework blanket impls, support IntoResponse types #11

feat: rework blanket impls, support IntoResponse types

feat: rework blanket impls, support IntoResponse types #11

Workflow file for this run

name: release
on:
push:
tags:
- 'v*.*.*'
permissions:
contents: write
jobs:
changelog:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Get the version
id: get_version
run: echo "version=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_OUTPUT
- name: Build changelog
id: github_release
uses: mikepenz/release-changelog-builder-action@v3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
configuration: .release.json
commitMode: true
- name: Create release
id: create_release
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
name: ${{ steps.get_version.outputs.version }} 🎉
body: ${{ steps.github_release.outputs.changelog }}