Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .github/workflows/rust-sdk-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,21 @@ jobs:
steps:
# Checkout the repository
- uses: actions/checkout@v4
with:
persist-credentials: false # disable default GITHUB_TOKEN
fetch-depth: 0

# Configure Git identity
- name: Configure Git
run: |
git config user.name "spinframeworkbot"
git config user.email "[email protected]"

# Set the remote to use the PAT
- name: Use PAT for Git
run: |
git remote set-url origin https://x-access-token:${{ secrets.SPIN_RUST_SDK_RELEASE_PAT }}@github.com/${{ github.repository }}.git


# Run script to update the templates
- name: Bump Rust Templates SDK Dependency
Expand Down