aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/github-release.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/github-release.yml')
-rw-r--r--.github/workflows/github-release.yml24
1 files changed, 24 insertions, 0 deletions
diff --git a/.github/workflows/github-release.yml b/.github/workflows/github-release.yml
new file mode 100644
index 0000000000..55d01f85cb
--- /dev/null
+++ b/.github/workflows/github-release.yml
@@ -0,0 +1,24 @@
+name: Create GitHub release
+
+permissions:
+ contents: write
+
+on:
+ push:
+ tags:
+ - "v*"
+ workflow_dispatch:
+
+jobs:
+ release:
+ runs-on: ubuntu-latest
+
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v4
+
+ - name: Release
+ uses: softprops/action-gh-release@v1
+ with:
+ draft: true
+ prerelease: true