Skip to content

Commit

Permalink
Add a github release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
clementwanjau committed Jul 15, 2024
1 parent 3b5fe3d commit 1ca0da3
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Release from Tag

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

jobs:
Create-Release:
runs-on: ubuntu-latest
steps:
- name: Checkout the repo
uses: actions/checkout@v3
- name: Create a release
uses: softprops/action-gh-release@v2
with:
body_path: CHANGELOG.md
token: ${{ secrets.GITHUB_TOKEN }}
make_latest: true

0 comments on commit 1ca0da3

Please sign in to comment.