fix CI deployment 8

This commit is contained in:
Yeicor
2024-03-10 18:16:34 +01:00
parent af68f8b1ff
commit 509b12cd97
2 changed files with 3 additions and 2 deletions

View File

@@ -51,8 +51,9 @@ jobs:
exit 1 exit 1
fi fi
rebuild: # Makes sure all artifacts are updated and use the new version for the next deployment steps deploy: # Makes sure all artifacts are updated and use the new version for the next deployment steps
needs: "update-versions" needs: "update-versions"
uses: "./.github/workflows/deploy2.yml" uses: "./.github/workflows/deploy2.yml"
secrets: "inherit" # Inherit the secrets from the parent workflow
with: with:
ref: "master" # Ensure we are cloning the latest version of the repository ref: "master" # Ensure we are cloning the latest version of the repository

View File

@@ -71,7 +71,7 @@ jobs:
- uses: "actions/checkout@v4" - uses: "actions/checkout@v4"
with: with:
ref: "${{ inputs.ref }}" ref: "${{ inputs.ref }}"
- uses: "JRubics/poetry-publish@v2" - uses: "JRubics/poetry-publish@v2.0"
with: with:
python-version: "3.11" python-version: "3.11"
pypi_token: "${{ secrets.PYPI_TOKEN }}" pypi_token: "${{ secrets.PYPI_TOKEN }}"