chore(tooling): refresh managed config + source credentials from env … #9
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
| # https://github.com/vergil-project/vergil-actions/blob/develop/.github/workflows/README.md | |
| name: CD | |
| on: | |
| push: | |
| branches: [develop, main] | |
| workflow_dispatch: | |
| permissions: | |
| attestations: write | |
| contents: write | |
| id-token: write | |
| pull-requests: write | |
| jobs: | |
| docs: | |
| uses: vergil-project/vergil-actions/.github/workflows/cd-docs.yml@v2.0 | |
| with: | |
| pre-deploy-command: >- | |
| uv sync --frozen --group docs && | |
| git clone --depth 1 --branch develop | |
| https://github.com/mq-rest-admin-project/mq-rest-admin-common.git | |
| .mq-rest-admin-common | |
| permissions: | |
| contents: write | |
| release: | |
| if: github.ref == 'refs/heads/main' | |
| uses: vergil-project/vergil-actions/.github/workflows/cd-release.yml@v2.0 | |
| with: | |
| language: python | |
| container-tag: "3.14" | |
| registry-publish: true | |
| secrets: inherit |