Skip to content

Release v2.0.7

Release v2.0.7 #18

Workflow file for this run

name: Release
on:
push:
tags:
- v[0-9]+.*
permissions:
contents: write
jobs:
create-release:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: taiki-e/checkout-action@v1
- uses: taiki-e/create-gh-release-action@v1
with:
changelog: CHANGELOG.md
title: $tag
branch: 'main|v[0-9]+'
token: ${{ secrets.GITHUB_TOKEN }}