add package upload logic
Some checks failed
CI / linter (ubuntu-latest, 3.9) (push) Successful in 35s
SonarQube Scan / SonarQube Trigger (push) Successful in 49s
CI / tests_linux (ubuntu-latest, 3.9) (push) Successful in 37s
Upload Python Package / Create Release (push) Successful in 31s
Rename the project from template / rename-project (push) Successful in 27s
Upload Python Package / deploy (push) Failing after 1m15s

This commit is contained in:
Simon 2024-11-13 15:59:48 +01:00
parent 6696271b45
commit 694680ffdf

View File

@ -30,23 +30,25 @@ jobs:
with: with:
body_path: release_message.md body_path: release_message.md
# deploy: deploy:
# needs: release needs: release
# runs-on: ubuntu-latest runs-on: ubuntu-latest
# steps: steps:
# - uses: actions/checkout@v3 - uses: actions/checkout@v3
# - name: Set up Python - name: Set up Python
# uses: actions/setup-python@v4 uses: actions/setup-python@v4
# with: with:
# python-version: '3.x' python-version: '3.x'
# - name: Install dependencies - name: Install dependencies
# run: | run: |
# python -m pip install --upgrade pip python -m pip install --upgrade pip
# pip install setuptools wheel twine pip install setuptools wheel twine
# - name: Build and publish - name: Build and publish
# env: env:
# TWINE_USERNAME: __token__ TWINE_USERNAME: __token__
# TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }} TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
# run: | run: |
# python setup.py sdist bdist_wheel REPOSITORY_OWNER=$(echo "$GITHUB_REPOSITORY" | awk -F '/' '{print $1}')
# twine upload dist/* python setup.py sdist bdist_wheel
twine upload --repository-url -u gitearobot -p ${{ secrets.PACKAGE_GITEA_PAT }} https://git.disi.dev/api/packages/$REPOSITORY_OWNER/pypi dist/*