From 0fccdf60bd287c2ba01e1ee1c5002cba89e841c8 Mon Sep 17 00:00:00 2001 From: Pelagic Date: Mon, 13 May 2024 13:39:56 +0300 Subject: [PATCH] Attempting to fix the publish action. --- .gitea/workflows/publish.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/publish.yaml b/.gitea/workflows/publish.yaml index 1c1fbd5..a8cc8ad 100644 --- a/.gitea/workflows/publish.yaml +++ b/.gitea/workflows/publish.yaml @@ -16,7 +16,7 @@ jobs: uses: actions/setup-python@v5 with: # Semantic version range syntax or exact version of a Python version - python-version: '3.12' + python-version: '3.12.3' # Optional - x64 or x86 architecture, defaults to x64 architecture: 'x64' @@ -32,7 +32,7 @@ jobs: - name: Publish package to Gitea PyPI uses: pypa/gh-action-pypi-publish@release/v1 with: - packages-dir: dist/ - user: ${{ secrets.GITEA_PYPI_USERNAME }} - password: ${{ secrets.GITEA_PYPI_PASSWORD }} + user: ${{ secrets.GIT_PYPI_USERNAME }} + password: ${{ secrets.GIT_PYPI_PASSWORD }} repository-url: https://git.vickys-corner.xyz/api/packages/StarFields/pypi + print-hash: true