Release: chore(release): 0.11.3 (#459) Signed-off-by: client-software-ci <129794699+client-software-ci@users.noreply.github.com> #50
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: "Release: Publish" | |
| run-name: "Release: ${{ github.event.head_commit.message || inputs.tag }}" | |
| on: | |
| push: | |
| branches: | |
| - mainline | |
| paths: | |
| - CHANGELOG.md | |
| workflow_dispatch: | |
| inputs: | |
| tag: | |
| required: true | |
| type: string | |
| description: Specify a tag to re-run a release. | |
| concurrency: | |
| group: release | |
| permissions: | |
| contents: read | |
| jobs: | |
| TagRelease: | |
| uses: aws-deadline/.github/.github/workflows/reusable_tag_release.yml@mainline | |
| secrets: inherit | |
| with: | |
| tag: ${{ github.event_name == 'workflow_dispatch' && inputs.tag || '' }} | |
| UnitTests: | |
| needs: [TagRelease] | |
| name: Unit and Integration Tests | |
| uses: ./.github/workflows/code_quality.yml | |
| with: | |
| tag: ${{ needs.TagRelease.outputs.tag }} | |
| ManualTestGate: | |
| needs: [TagRelease, BuildInstaller] | |
| runs-on: ubuntu-latest | |
| environment: release-gate | |
| steps: | |
| - run: echo "Manual testing approved for ${{ needs.TagRelease.outputs.tag }}" | |
| PreRelease: | |
| needs: [TagRelease, UnitTests] | |
| uses: aws-deadline/.github/.github/workflows/reusable_prerelease.yml@mainline | |
| permissions: | |
| id-token: write | |
| contents: write | |
| secrets: inherit | |
| with: | |
| tag: ${{ needs.TagRelease.outputs.tag }} | |
| BuildInstaller: | |
| needs: [TagRelease, PreRelease] | |
| uses: aws-deadline/.github/.github/workflows/reusable_build_installers.yml@mainline | |
| secrets: inherit | |
| permissions: | |
| id-token: write | |
| contents: read | |
| with: | |
| ref_type: tags | |
| ref: ${{ needs.TagRelease.outputs.tag }} | |
| oses: "['Windows', 'MacOS']" | |
| environment: release | |
| project_name: ${{ github.event.repository.name }} | |
| Publish: | |
| needs: [TagRelease, BuildInstaller] | |
| uses: aws-deadline/.github/.github/workflows/reusable_publish_python.yml@mainline | |
| permissions: | |
| id-token: write | |
| secrets: inherit | |
| with: | |
| tag: ${{ needs.TagRelease.outputs.tag }} | |
| IsCondaReady: | |
| needs: Publish | |
| runs-on: ubuntu-latest | |
| environment: release-gate | |
| name: “Is the Conda Package available in all ProdWaves and have you ran any required manual tests?” | |
| steps: | |
| - run: | | |
| : | |
| ReleaseInstaller: | |
| needs: [TagRelease, IsCondaReady, ManualTestGate] | |
| uses: aws-deadline/.github/.github/workflows/reusable_release_installers.yml@mainline | |
| secrets: inherit | |
| permissions: | |
| id-token: write | |
| contents: read | |
| with: | |
| tag: ${{ needs.TagRelease.outputs.tag }} | |
| oses: "['Windows', 'MacOS']" | |
| project_name: ${{ github.event.repository.name }} | |
| Release: | |
| needs: [TagRelease, ReleaseInstaller] | |
| uses: aws-deadline/.github/.github/workflows/reusable_release.yml@mainline | |
| secrets: inherit | |
| permissions: | |
| id-token: write | |
| contents: write | |
| with: | |
| tag: ${{ needs.TagRelease.outputs.tag }} | |
| # PyPI does not support reusable workflows yet | |
| # # See https://github.com/pypi/warehouse/issues/11096 | |
| PublishToPyPI: | |
| needs: [TagRelease, Release] | |
| runs-on: ubuntu-latest | |
| environment: release | |
| permissions: | |
| id-token: write | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| with: | |
| ref: ${{ needs.TagRelease.outputs.tag }} | |
| fetch-depth: 0 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ needs.TagRelease.outputs.build-python-version }} | |
| - name: Install dependencies | |
| run: | | |
| pip install --upgrade hatch | |
| - name: Build | |
| run: hatch -v build | |
| # # See https://docs.github.com/en/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-pypi | |
| - name: Publish to PyPI | |
| uses: pypa/gh-action-pypi-publish@release/v1 |