feat: Alias'd rich-click into ArmoniK.CLI Core #331
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
| name: Python Package | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| release: | |
| types: [published] | |
| jobs: | |
| build-publish: | |
| name: Build and publish package | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v5 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version-file: ".python-version" | |
| - name: Build armonik-cli | |
| run: uv build | |
| - name: Build armonik-cli-core | |
| run: uv build --package armonik_cli_core | |
| - name: Publish armonik-cli to PyPi | |
| if: github.event_name == 'release' # Publish on releases | |
| run: uv publish -t ${{ secrets.PYPI_CLI_TOKEN }} |