Skip to content

Commit

Permalink
Add workflow for GitHub release
Browse files Browse the repository at this point in the history
  • Loading branch information
stefandesu committed Jan 25, 2024
1 parent 7ca4a07 commit 5df08ac
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/gh-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
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: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: coli-ana ${{ github.ref }}
body: TODO
draft: true
prerelease: false

0 comments on commit 5df08ac

Please sign in to comment.