summaryrefslogtreecommitdiffstats
path: root/.github/workflows/release.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/release.yml')
-rw-r--r--.github/workflows/release.yml18
1 files changed, 18 insertions, 0 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
new file mode 100644
index 0000000..4c3654e
--- /dev/null
+++ b/.github/workflows/release.yml
@@ -0,0 +1,18 @@
+name: Publish a Github release
+
+on:
+ push:
+ branches:
+ - master
+ tags:
+ - "v*.*"
+
+jobs:
+ release:
+ runs-on: debian-latest
+ permissions:
+ contents: write
+ steps:
+ - name: Release
+ uses: softprops/action-gh-release@v1
+