Skip to content

Commit

Permalink
Create release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Sammy-T authored Jun 25, 2024
1 parent 485cb32 commit 43722eb
Showing 1 changed file with 23 additions and 0 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

on:
workflow_dispatch: # Allow manual triggering
push:
tags:
- 'v*.*.*' # Trigger on pushing version tags

jobs:
# Create a release
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Release
uses: softprops/[email protected]
with:
name: ${{ github.ref_name }}
tag_name: ${{ github.ref_name }}
draft: true

0 comments on commit 43722eb

Please sign in to comment.