Skip to content

Commit

Permalink
add release workflow (#326)
Browse files Browse the repository at this point in the history
Co-authored-by: joshmeranda <[email protected]>
  • Loading branch information
joshmeranda and joshmeranda authored Nov 15, 2024
1 parent 7860d9c commit 62c9d36
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -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 }}

0 comments on commit 62c9d36

Please sign in to comment.