1
0
mirror of https://github.com/rancher/steve.git synced 2025-07-17 08:21:41 +00:00

add release workflow (#325)

Co-authored-by: joshmeranda <joshua.meranda@gmail.com>
This commit is contained in:
Josh Meranda 2024-11-15 12:21:46 -05:00 committed by GitHub
parent c744f0b17b
commit 5ffa947d59
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 }}