chore(sdk/python): bump to 0.5.4b1 for API parity beta #2
Workflow file for this run
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
| # SPDX-FileCopyrightText: © 2025 Phala Network <dstack@phala.network> | |
| # | |
| # SPDX-License-Identifier: Apache-2.0 | |
| name: Publish Python SDK to PyPI | |
| on: | |
| push: | |
| tags: ['python-sdk-v*'] | |
| workflow_dispatch: | |
| inputs: | |
| target: | |
| description: 'Publish target' | |
| required: true | |
| default: 'pypi' | |
| type: choice | |
| options: | |
| - pypi | |
| - testpypi | |
| permissions: | |
| id-token: write | |
| contents: write | |
| jobs: | |
| publish: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.11' | |
| - name: Install PDM | |
| run: pip install pdm | |
| - name: Build distribution | |
| working-directory: sdk/python | |
| run: pdm build | |
| - name: Parse version | |
| id: version | |
| run: echo "version=${GITHUB_REF_NAME#python-sdk-v}" >> "$GITHUB_OUTPUT" | |
| - name: Publish to PyPI | |
| if: github.event_name == 'push' || github.event.inputs.target == 'pypi' | |
| uses: pypa/gh-action-pypi-publish@release/v1 | |
| with: | |
| packages-dir: sdk/python/dist | |
| - name: Publish to TestPyPI | |
| if: github.event_name == 'workflow_dispatch' && github.event.inputs.target == 'testpypi' | |
| uses: pypa/gh-action-pypi-publish@release/v1 | |
| with: | |
| repository-url: https://test.pypi.org/legacy/ | |
| packages-dir: sdk/python/dist | |
| - name: GitHub Release | |
| if: github.event_name == 'push' | |
| uses: softprops/action-gh-release@v1 | |
| with: | |
| name: "Python SDK v${{ steps.version.outputs.version }}" | |
| body: | | |
| ## PyPI Package | |
| **Package**: `dstack-sdk ${{ steps.version.outputs.version }}` | |
| **Install**: `pip install dstack-sdk==${{ steps.version.outputs.version }}` | |
| **Registry**: https://pypi.org/project/dstack-sdk/${{ steps.version.outputs.version }}/ |