From f74a3d16b5048ffd630c8a2aaa4d2f3ea67f281c Mon Sep 17 00:00:00 2001 From: Alex Lovell-Troy Date: Mon, 29 Jan 2024 17:14:39 -0500 Subject: [PATCH] attempting to get the tag bump to work correctly --- .github/workflows/auto-tag.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/auto-tag.yml b/.github/workflows/auto-tag.yml index eb323eb..69af348 100644 --- a/.github/workflows/auto-tag.yml +++ b/.github/workflows/auto-tag.yml @@ -17,14 +17,16 @@ jobs: permissions: contents: write steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: ref: ${{ github.event.pull_request.merge_commit_sha }} fetch-depth: '0' - name: Bump version and push tag - uses: anothrNick/github-tag-action@1.64.0 # Don't use @master or @v1 unless you're happy to test the latest version + uses: anothrNick/github-tag-action@1.67.0 # Don't use @master or @v1 unless you're happy to test the latest version env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # if you don't want to set write permissions use a PAT token WITH_V: true + DEFAULT_BRANCH: main + DEFAULT_BUMP: patch PRERELEASE: true \ No newline at end of file