Version 1.26.0 - 16.07.2025 #1
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Update Stable Branch on Release or Update | |
| on: | |
| release: | |
| types: | |
| - published | |
| - updated | |
| jobs: | |
| update-stable: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - name: Checkout main branch | |
| uses: actions/checkout@v4 | |
| with: | |
| ref: main | |
| fetch-depth: 0 # Полная история для force push | |
| - name: Configure Git user | |
| run: | | |
| git config --local user.email "vitaly.the.alpaca@gmail.com" | |
| git config --local user.name "Vitaly the Alpaca (bot)" | |
| - name: Force update stable branch to match main | |
| run: | | |
| git checkout -B stable | |
| git push --force origin stable |