Tag latest #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: Tag latest | |
| on: | |
| # Once draft release is released, trigger the docs release | |
| release: | |
| types: | |
| ## stable release only | |
| - released | |
| jobs: | |
| tag-latest: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Tag latest | |
| run: | | |
| git tag -f latest | |
| git push origin latest |