Skip to content

Commit

Permalink
Merge pull request #263 from a-hilaly/release-workflow
Browse files Browse the repository at this point in the history
ci: add github release workflow
  • Loading branch information
barney-s authored Feb 5, 2025
2 parents 46d08ba + 9a840f2 commit 9c8683e
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/github-release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Create Github Release

permissions:
contents: write

on:
push:
tags:
- "v*.*.*"

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Release
uses: softprops/action-gh-release@v2
with:
generate_release_notes: true

0 comments on commit 9c8683e

Please sign in to comment.