diff --git a/.github/workflows/release-tagged-version.yml b/.github/workflows/release-tagged-version.yml new file mode 100644 index 0000000..ad1c11f --- /dev/null +++ b/.github/workflows/release-tagged-version.yml @@ -0,0 +1,18 @@ +--- +name: "Release Tagged Version" + +on: + push: + tags: + - "v*" + +jobs: + tagged-release: + runs-on: "ubuntu-latest" + + steps: + - name: "Release Tagged Version" + uses: "marvinpinto/action-automatic-releases@latest" + with: + repo_token: "${{ secrets.GITHUB_TOKEN }}" + prerelease: false \ No newline at end of file