Skip to content

Commit 46547dc

Browse files
committed
add correct pypi repo
1 parent 00db40e commit 46547dc

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/createrelease.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ jobs:
2727
run: |
2828
python3 -m pip install --upgrade pip
2929
python3 -m pip install setuptools
30+
# this section should be updated. p.e. wheel is installed too late.
31+
# this leads to unnecessary warnings
3032
scripts/install_deps
3133
- name: Build and publish
3234
if: endsWith(github.ref, env.ICLOUDPD_VERSION)
@@ -41,7 +43,9 @@ jobs:
4143
# Variable not read correctly?!
4244
#echo ICLOUDPD_ASSET_NAME=$(basename ${{env.ICLOUDPD_ASSET_PATH}}) >> $GITHUB_ENV
4345
echo "::debug::${{env.ICLOUDPD_ASSET_NAME}}"
44-
python3 -m twine upload --repository testpypi dist/*
46+
python3 -m twine upload dist/*
47+
#python3 -m twine upload --repository testpypi dist/*
48+
# todo: put repo in github secret for flexibility
4549
- name: Create Release
4650
if: endsWith(github.ref, env.ICLOUDPD_VERSION)
4751
id: create_release

0 commit comments

Comments
 (0)