From d5344f95c10de8a144f0a288b6a610fdbbc10fa6 Mon Sep 17 00:00:00 2001 From: Simon Diesenreiter Date: Wed, 13 Nov 2024 17:19:59 +0100 Subject: [PATCH] more bugfix --- .gitea/workflows/release.yml | 8 +++--- .gitea/workflows/rename_project.yml | 42 ----------------------------- python_test_project/VERSION | 2 +- 3 files changed, 5 insertions(+), 47 deletions(-) delete mode 100644 .gitea/workflows/rename_project.yml diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index d30ad62..9022dae 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -50,14 +50,14 @@ jobs: echo "Version matches successfully!" else echo "Version must match!" - return -1 + exit -1 fi - name: Build and publish env: - TWINE_USERNAME: __token__ - TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }} + 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 -u gitearobot -p ${{ secrets.PACKAGE_GITEA_PAT }} dist/* + twine upload --repository-url https://git.disi.dev/api/packages/$REPOSITORY_OWNER/pypi dist/* diff --git a/.gitea/workflows/rename_project.yml b/.gitea/workflows/rename_project.yml deleted file mode 100644 index ad97c94..0000000 --- a/.gitea/workflows/rename_project.yml +++ /dev/null @@ -1,42 +0,0 @@ -name: Rename the project from template - -on: [push] - -permissions: write-all - -jobs: - rename-project: - if: ${{ !endsWith (gitea.repository, 'Templates/Python') }} - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - with: - # by default, it uses a depth of 1 - # this fetches all history so that we can read each commit - fetch-depth: 0 - ref: ${{ gitea.head_ref }} - - - run: echo "REPOSITORY_NAME=$(echo "$GITHUB_REPOSITORY" | awk -F '/' '{print $2}' | tr '-' '_' | tr '[:upper:]' '[:lower:]')" >> $GITHUB_ENV - shell: bash - - - run: echo "REPOSITORY_URLNAME=$(echo "$GITHUB_REPOSITORY" | awk -F '/' '{print $2}')" >> $GITHUB_ENV - shell: bash - - - run: echo "REPOSITORY_OWNER=$(echo "$GITHUB_REPOSITORY" | awk -F '/' '{print $1}')" >> $GITHUB_ENV - shell: bash - - - name: Is this still a template - id: is_template - run: echo "::set-output name=is_template::$(ls .gitea/template.yml &> /dev/null && echo true || echo false)" - - - name: Rename the project - if: steps.is_template.outputs.is_template == 'true' - run: | - echo "Renaming the project with -a(author) ${{ env.REPOSITORY_OWNER }} -n(name) ${{ env.REPOSITORY_NAME }} -u(urlname) ${{ env.REPOSITORY_URLNAME }}" - .gitea/rename_project.sh -a ${{ env.REPOSITORY_OWNER }} -n ${{ env.REPOSITORY_NAME }} -u ${{ env.REPOSITORY_URLNAME }} -d "Awesome ${{ env.REPOSITORY_NAME }} created by ${{ env.REPOSITORY_OWNER }}" - - - uses: stefanzweifel/git-auto-commit-action@v4 - with: - commit_message: "✅ Ready to clone and code." - # commit_options: '--amend --no-edit' - push_options: --force diff --git a/python_test_project/VERSION b/python_test_project/VERSION index 6e8bf73..1866a36 100644 --- a/python_test_project/VERSION +++ b/python_test_project/VERSION @@ -1 +1 @@ -0.1.0 +0.2.9