diff --git a/.github/workflows/tag-release.yml b/.github/workflows/tag-release.yml new file mode 100644 index 0000000..9000449 --- /dev/null +++ b/.github/workflows/tag-release.yml @@ -0,0 +1,17 @@ +name: Autotag and Release +on: + push: + branches: + - main + +permissions: + contents: write + +jobs: + tag-release: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: pantheon-systems/action-autotag@v0 + with: + gh-token: ${{ github.token }} \ No newline at end of file