We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a80fcba commit f0589ebCopy full SHA for f0589eb
.github/workflows/rust-sdk-release.yml
@@ -17,6 +17,21 @@ jobs:
17
steps:
18
# Checkout the repository
19
- uses: actions/checkout@v4
20
+ with:
21
+ persist-credentials: false # disable default GITHUB_TOKEN
22
+ fetch-depth: 0
23
+
24
+ # Configure Git identity
25
+ - name: Configure Git
26
+ run: |
27
+ git config user.name "spinframeworkbot"
28
+ git config user.email "[email protected]"
29
30
+ # Set the remote to use the PAT
31
+ - name: Use PAT for Git
32
33
+ git remote set-url origin https://x-access-token:${{ secrets.SPIN_RUST_SDK_RELEASE_PAT }}@github.com/${{ github.repository }}.git
34
35
36
# Run script to update the templates
37
- name: Bump Rust Templates SDK Dependency
0 commit comments