1
0
mirror of https://github.com/rancher/steve.git synced 2025-06-25 14:32:09 +00:00

add release workflow (#324)

Co-authored-by: joshmeranda <joshua.meranda@gmail.com>
This commit is contained in:
Josh Meranda 2024-11-15 12:21:59 -05:00 committed by GitHub
parent 2175e090fe
commit a672f2f12a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

21
.github/workflows/release.yaml vendored Normal file
View File

@ -0,0 +1,21 @@
name: Release
on:
push:
tags:
- v*
jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name : Checkout repository
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Create release on Github
run: |
gh --repo "${{ github.repository }}" release create ${{ github.ref_name }} --verify-tag --generate-notes
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}