mirror of
https://github.com/spf13/cobra
synced 2025-05-07 13:57:21 +00:00
chore(ci): add release note generation
Allows for better changelogs for apps such as dependabot and renovate.
This commit is contained in:
parent
0da0687426
commit
ce89263486
1 changed files with 18 additions and 0 deletions
18
.github/workflows/release.yml
vendored
Normal file
18
.github/workflows/release.yml
vendored
Normal file
|
@ -0,0 +1,18 @@
|
|||
name: Release
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- "v*"
|
||||
|
||||
jobs:
|
||||
release-notary:
|
||||
name: Release
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Check out code
|
||||
uses: actions/checkout@v1
|
||||
|
||||
- name: Release Notary Action
|
||||
uses: docker://outillage/release-notary
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
Loading…
Add table
Reference in a new issue