Skip to content

Commit

Permalink
Add a "Create a GitHub release" workflow on git tag
Browse files Browse the repository at this point in the history
Signed-off-by: tdruez <[email protected]>
  • Loading branch information
tdruez committed Jan 18, 2024
1 parent be69184 commit 4bbae4c
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/gh-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Create a GitHub release

on:
workflow_dispatch:
push:
tags:
- "v*.*.*"

jobs:
create-github-release:
runs-on: ubuntu-22.04

steps:
- name: Create a GitHub release
uses: softprops/action-gh-release@v1
with:
draft: false

0 comments on commit 4bbae4c

Please sign in to comment.