Skip to content

Commit

Permalink
Feature - added release automation with gh action (#46)
Browse files Browse the repository at this point in the history
* added release automation with gh action

* added github action for released on tag
  • Loading branch information
zachreborn committed Mar 7, 2024
1 parent 7a78a27 commit 79df494
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Release

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

jobs:
build_release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Create release
uses: softprops/action-gh-release@v1

0 comments on commit 79df494

Please sign in to comment.