Skip to content

Commit

Permalink
Add release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
finnvoor committed Mar 2, 2024
1 parent a806fe4 commit 4d8aa55
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:
- "*.*.*"

jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Release
run: gh release create ${{ github.ref_name }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 4d8aa55

Please sign in to comment.