diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml new file mode 100644 index 000000000..15e9d7182 --- /dev/null +++ b/.github/workflows/releases.yml @@ -0,0 +1,25 @@ +name: "tagged-release" + +on: + push: + tags: + - "V*" + +jobs: + tagged-release: + name: "Tagged Release" + runs-on: "ubuntu-latest" + + steps: + # ... + - name: "Deploy Release" + run: | + echo "done!" + + - uses: "marvinpinto/action-automatic-releases@latest" + with: + repo_token: "${{ secrets.GITHUB_TOKEN }}" + prerelease: false + files: | + README.md + LICENSE.md