Publish new release #34
This file contains 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 }} |