ci: Major refactor of release-workflows #80
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
| # Copyright (c) 2020-2026, NVIDIA CORPORATION. | |
| # | |
| # Licensed under the Apache License, Version 2.0 (the "License"); | |
| # you may not use this file except in compliance with the License. | |
| # You may obtain a copy of the License at | |
| # | |
| # http://www.apache.org/licenses/LICENSE-2.0 | |
| # | |
| # Unless required by applicable law or agreed to in writing, software | |
| # distributed under the License is distributed on an "AS IS" BASIS, | |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
| # See the License for the specific language governing permissions and | |
| # limitations under the License. | |
| name: "Build, validate, and release NeMo Run" | |
| on: | |
| push: | |
| branches: | |
| - "main" | |
| - "[rv][0-9].[0-9].[0-9]" | |
| - "[rv][0-9].[0-9].[0-9]rc[0-9]" | |
| - "deploy-release/*" | |
| pull_request: | |
| workflow_dispatch: | |
| inputs: | |
| release-ref: | |
| description: Ref (SHA or branch name) to release | |
| required: true | |
| type: string | |
| dry-run: | |
| description: Compute the release but do not publish wheel, GH release, or docs. | |
| required: true | |
| default: true | |
| type: boolean | |
| generate-changelog: | |
| description: Generate changelog | |
| required: false | |
| default: true | |
| type: boolean | |
| publish-docs: | |
| description: Publish docs | |
| required: false | |
| default: true | |
| type: boolean | |
| version-bump-branch: | |
| type: string | |
| required: true | |
| description: Branch to target for version bump | |
| defaults: | |
| run: | |
| shell: bash -x -e -u -o pipefail {0} | |
| permissions: | |
| id-token: write | |
| contents: write | |
| pull-requests: write | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-${{ github.event_name }} | |
| cancel-in-progress: ${{ github.event_name != 'workflow_dispatch' }} | |
| jobs: | |
| release: | |
| if: '!cancelled()' | |
| uses: NVIDIA-NeMo/FW-CI-templates/.github/workflows/_release_library.yml@v1.0.0 | |
| with: | |
| release-ref: ${{ inputs.release-ref || github.sha }} | |
| python-package: nemo_run | |
| python-version: "3.10" | |
| library-name: NeMo Run | |
| validate-only: ${{ github.event_name != 'workflow_dispatch' }} | |
| dry-run: ${{ inputs.dry-run || false }} | |
| version-bump-branch: ${{ inputs.version-bump-branch || github.ref_name }} | |
| app-id: ${{ vars.BOT_ID }} | |
| packaging: setuptools | |
| gh-release-use-changelog-builder: ${{ inputs.generate-changelog || false }} | |
| publish-docs: ${{ inputs.publish-docs || true }} | |
| docs-target-path: nemo/run | |
| restrict-to-admins: true | |
| secrets: inherit # pragma: allowlist secret | |
| release-summary: | |
| needs: [release] | |
| if: always() && !cancelled() | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Result | |
| env: | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: | | |
| FAILED_JOBS=$(gh run view $GITHUB_RUN_ID --repo ${{ github.repository }} --json jobs --jq '[.jobs[] | select(.conclusion == "failure" or .conclusion == "timed_out" or .conclusion == "action_required")] | length') | |
| if [ "${FAILED_JOBS:-0}" -eq 0 ]; then | |
| echo "✅ All previous jobs completed successfully" | |
| exit 0 | |
| else | |
| echo "❌ Found $FAILED_JOBS failed job(s)" | |
| gh run view $GITHUB_RUN_ID --repo ${{ github.repository }} --json jobs --jq '.jobs[] | select(.conclusion == "failure" or .conclusion == "timed_out" or .conclusion == "action_required") | .name' | |
| exit 1 | |
| fi |