more bugfixes
All checks were successful
Rename the project from template / rename-project (push) Has been skipped
SonarQube Scan / SonarQube Trigger (pull_request) Has been skipped
CI / linter (ubuntu-latest, 3.9) (pull_request) Successful in 36s
CI / tests_linux (ubuntu-latest, 3.9) (pull_request) Successful in 40s

This commit is contained in:
Simon Diesenreiter 2024-11-13 18:11:55 +01:00
parent 7851c67618
commit ff7093f890
2 changed files with 31 additions and 21 deletions

View File

@ -30,23 +30,33 @@ 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: Check version match
# env: run: |
# TWINE_USERNAME: __token__ REPOSITORY_NAME=$(echo "$GITHUB_REPOSITORY" | awk -F '/' '{print $2}' | tr '-' '_' | tr '[:upper:]' '[:lower:]')
# TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }} if [ "$(cat $REPOSITORY_NAME/VERSION)" = "${GITHUB_REF_NAME:1}" ] ; then
# run: | echo "Version matches successfully!"
# python setup.py sdist bdist_wheel else
# twine upload dist/* echo "Version must match!"
exit -1
fi
- name: Build and publish
env:
TWINE_USERNAME: gitearobot
TWINE_PASSWORD: ${{ secrets.PACKAGE_GITEA_PAT }}
run: |
REPOSITORY_OWNER=$(echo "$GITHUB_REPOSITORY" | awk -F '/' '{print $1}')
python setup.py sdist bdist_wheel
twine upload --repository-url https://git.disi.dev/api/packages/$REPOSITORY_OWNER/pypi dist/*

View File

@ -6,7 +6,7 @@ permissions: write-all
jobs: jobs:
rename-project: rename-project:
if: ${{ !endsWith (github.repository, 'Templates/Python') }} if: ${{ !endsWith (gitea.repository, 'Templates/Python') }}
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3