Skip to content

Commit

Permalink
👷 Added Release Flow (#11)
Browse files Browse the repository at this point in the history
* 👷 Added Release Flow

* 🔧 Added Token
  • Loading branch information
Templum authored May 2, 2024
1 parent 01d6de2 commit e361ca5
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 2 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Release Flow
on:
push: # Only trigger for tags with format v****
tags:
- v[0-9]+.[0-9]+.[0-9]+

jobs:
build:
name: Create Release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Release
uses: softprops/action-gh-release@v2
with:
files: |
CHANGELOG.md
LICENSE
fail_on_unmatched_files: true
token: ${{ secrets.GH_TOKEN }}
- name: Maintain SEMVER Tags
uses: vweevers/additional-tags-action@v2
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit e361ca5

Please sign in to comment.