Publish new release #35
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: Publish new release | |
| on: | |
| workflow_dispatch: | |
| jobs: | |
| publish: | |
| name: Update manifest and publish | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out the repository | |
| uses: actions/checkout@v4 | |
| - name: Prepare and install deps | |
| uses: ./.github/actions/install-deps | |
| - name: Run script | |
| run: | | |
| uv run python script/publish_release.py | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.ADMIN_TOKEN }} |