diff --git a/.github/workflows/github-release.yml b/.github/workflows/github-release.yml new file mode 100644 index 0000000..9413c15 --- /dev/null +++ b/.github/workflows/github-release.yml @@ -0,0 +1,17 @@ +# GitHub Workflow File to Create Release on GitHub when a git-tag is pushed + +name: Release on Tagging + +on: + push: + tags: + - "v*.*.*" + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Release + uses: softprops/action-gh-release@v1 \ No newline at end of file