Skip to content

Commit

Permalink
Add GitHub Release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
stefandesu committed Oct 2, 2024
1 parent 710f781 commit 697e63c
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/gh-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: GitHub Release

on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"

jobs:
github-release:
runs-on: ubuntu-latest
steps:
- name: Create GitHub release
id: create_release
uses: softprops/action-gh-release@v2
with:
name: Login Server ${{ github.ref_name }}
body: TODO
draft: true
prerelease: false

0 comments on commit 697e63c

Please sign in to comment.