improve codebase based on tower-http's efforts (David) #14
Workflow file for this run
This file contains 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
name: create github release | |
on: | |
push: | |
tags: | |
- tower-async-[0-9]+.* | |
- tower-async-[a-z]+-[0-9]+.* | |
jobs: | |
create-release: | |
name: Create GitHub release | |
# only publish from the origin repository | |
if: github.repository_owner == 'plabayo' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: taiki-e/[email protected] | |
with: | |
prefix: "(tower-async)|(tower-async-[a-z]+)" | |
changelog: "$prefix/CHANGELOG.md" | |
title: "$prefix $version" | |
branch: "(master)|(v[0-9]+.[0-9]+.x)" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |