diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml new file mode 100644 index 0000000..cd7c84c --- /dev/null +++ b/.github/workflows/publish-release.yml @@ -0,0 +1,15 @@ +# .github/workflows/publish-release.yml +name: Publish release +on: + push: + tags: + - "*" +jobs: + publish: + runs-on: ubuntu-latest + name: Publish release + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Publish release + uses: eloquent/github-release-action@v3 \ No newline at end of file