Skip to content

Commit fe36c73

Browse files
committed
Add package upload step to release-pipeline using Twine
1 parent d533bb4 commit fe36c73

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/release-pipeline.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,11 @@ jobs:
4141
echo "opencue_cueadmin_path=$(ls -a packages/opencue_cueadmin-*.whl)" >> $GITHUB_OUTPUT
4242
echo "opencue_cuegui_path=$(ls -a packages/opencue_cuegui-*.whl)" >> $GITHUB_OUTPUT
4343
44+
- name: Upload packages
45+
run: |
46+
python3 -m pip install --upgrade twine
47+
python3 -m twine upload --repository testpypi packages/*
48+
4449
build_docker_images:
4550
needs: build_python_packages
4651
runs-on: ubuntu-22.04

0 commit comments

Comments
 (0)