Add Z.AI provider and update Node stack #1
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 v1 on main | |
| on: | |
| push: | |
| branches: [ main ] | |
| workflow_dispatch: | |
| jobs: | |
| tag-v1: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - name: Checkout (full history for tags) | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Configure git user | |
| run: | | |
| git config user.name "github-actions[bot]" | |
| git config user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
| - name: Force-update v1 tag to current commit | |
| run: | | |
| # Create/update an annotated tag named v1 pointing to HEAD | |
| git tag -fa v1 -m "Release v1 (auto-update to latest main)" | |
| # Push the tag update to origin (force in case it already exists) | |
| git push origin -f v1 |