We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48a49b9 commit 50bbe9fCopy full SHA for 50bbe9f
1 file changed
.github/workflows/publish.yml
@@ -41,6 +41,7 @@ jobs:
41
ref: ${{ github.event.inputs.branch }}
42
token: ${{ secrets.GITHUB_TOKEN }}
43
fetch-depth: 0
44
+ persist-credentials: false # we set up our own PAT later to push to 'main', bypassing checks
45
46
- name: Install Rust
47
uses: dtolnay/rust-toolchain@stable
@@ -149,6 +150,7 @@ jobs:
149
150
run: |
151
git config --local user.email "nikhilidiculla@gmail.com"
152
git config --local user.name "Nikhil Idiculla (via GitHub Actions)"
153
+ git remote set-url origin https://tsnl:${{ secrets.PAT_TOKEN }}@github.com/${{ github.repository }}.git
154
155
- name: Commit version bump (but don't push yet)
156
0 commit comments