diff options
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/release.yml | 18 |
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 + |