v0.9.1 release #2
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 latest branch on release | |
| on: | |
| release: | |
| types: [published] | |
| jobs: | |
| update-latest-branch: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Update latest branch | |
| run: | | |
| git fetch origin | |
| git branch -f latest ${{ github.event.release.tag_name }} | |
| git push origin latest --force |