Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
22 lines
470 B
YAML
22 lines
470 B
YAML
name: Publish python-client
|
|
on:
|
|
push:
|
|
tags:
|
|
- "v*"
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
publish_pypi:
|
|
runs-on: ubicloud-standard-8
|
|
if: startsWith(github.ref, 'refs/tags/v')
|
|
container:
|
|
image: ghcr.io/windmill-labs/python-client-builder
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Upload python client
|
|
env:
|
|
PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
|
|
run: |
|
|
cd python-client
|
|
./publish.sh
|