Skip to content

Commit

Permalink
Fix git push from action workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobdeichert committed Oct 15, 2023
1 parent cf70982 commit 1907749
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
# Must use a PAT to bypass the branch protection rule (allows pushing commits without requiring PRs)
token: ${{ secrets.GH_PAT_TO_TRIGGER_RELEASE_WORKFLOW }}
- name: Validate version number input
run: |
if [[ ! "$VERSION" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
Expand Down Expand Up @@ -78,6 +81,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
# Must use a PAT to bypass the branch protection rule (allows pushing commits without requiring PRs)
token: ${{ secrets.GH_PAT_TO_TRIGGER_RELEASE_WORKFLOW }}
- name: Validate version number input
run: |
if [[ ! "$VERSION" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
Expand Down

0 comments on commit 1907749

Please sign in to comment.