Skip to content

chore: prepare tracing 0.1.39 (#2755) #66

chore: prepare tracing 0.1.39 (#2755)

chore: prepare tracing 0.1.39 (#2755) #66

Workflow file for this run

name: Release
on:
push:
tags:
- tracing-[0-9]+.*
- tracing-[a-z]+-[0-9]+.*
jobs:
create-release:
name: Create GitHub release
# only publish from the origin repository
if: github.repository_owner == 'tokio-rs'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: taiki-e/create-gh-release-action@v1
with:
prefix: tracing(-[a-z]+)?
changelog: "$prefix/CHANGELOG.md"
title: "$prefix $version"
branch: v0.1.x
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}