Skip to content

Commit 102e350

Browse files
authored
fix: 🩹 Continuous Delivery
1 parent 49efe97 commit 102e350

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

‎.github/actions/deploy/action.yml‎

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,6 @@ description: Publish package on PyPI
33
runs:
44
using: "composite"
55
steps:
6-
- name: Prepare Poetry
7-
shell: bash
8-
run: poetry config pypi-token.deploy ${{ env.PYPI_API_TOKEN }}
9-
106
- name: Publish
117
shell: bash
128
run: |

‎.github/workflows/cd.yml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ jobs:
2020
- name: Deploy
2121
uses: ./.github/actions/deploy
2222
env:
23-
PYPI_API_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
23+
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_API_TOKEN }}
2424
VERSION: ${{ github.ref_name }}

0 commit comments

Comments
 (0)