diff --git a/.github/workflows/tag.yml b/.github/workflows/tag.yml new file mode 100644 index 0000000..59a7d2e --- /dev/null +++ b/.github/workflows/tag.yml @@ -0,0 +1,22 @@ +name: Tag + +on: + push: + branches: + - main + tags-ignore: + - '**' + +jobs: + build-tag: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + with: + fetch-depth: 0 + - name: TagBot + uses: nicjohnson145/tagbot@latest + id: tagbot + env: + AUTH_TOKEN: ${{ secrets.ACTUAL_PAT }} \ No newline at end of file