From ad40e6a256bed62551e8f7436f43ae7841264776 Mon Sep 17 00:00:00 2001 From: jfavellar90 Date: Wed, 1 Nov 2023 11:52:12 -0500 Subject: [PATCH] fix: using Github PAT to bypass main branch protection --- .github/workflows/release.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 41edb7cb..47407220 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,6 +10,8 @@ jobs: bump_commit_sha: ${{ steps.bumpversion.outputs.commit_hash }} steps: - uses: actions/checkout@v3 + with: + token: ${{ secrets.ATLAS_PAT }} - name: Get next version id: tag_version uses: mathieudutour/github-tag-action@v6.0 @@ -50,6 +52,8 @@ jobs: changelog: ${{ steps.tag_version.outputs.changelog }} steps: - uses: actions/checkout@v3 + with: + token: ${{ secrets.ATLAS_PAT }} - name: Create tag id: tag_version uses: mathieudutour/github-tag-action@v6.0