From a0216952f6e22355c23a6ba9b9a73567c1a34c02 Mon Sep 17 00:00:00 2001 From: Luke Lashley Date: Tue, 3 Dec 2024 21:35:27 -0500 Subject: [PATCH] fix: change to deploy_key --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8dcb546..6f37d3a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -68,7 +68,7 @@ jobs: actions: write packages: write environment: - name: pypi + name: release steps: - uses: actions/checkout@v4 @@ -79,7 +79,7 @@ jobs: id: release uses: python-semantic-release/python-semantic-release@v9.14.0 with: - github_token: ${{ secrets.GITHUB_TOKEN }} + github_token: ${{ secrets.DEPLOY_KEY }} - name: Publish package distributions to PyPI uses: pypa/gh-action-pypi-publish@v1.12.2 @@ -92,4 +92,4 @@ jobs: uses: python-semantic-release/upload-to-gh-release@v8.7.0 if: steps.release.outputs.released == 'true' with: - github_token: ${{ secrets.GITHUB_TOKEN }} + github_token: ${{ secrets.DEPLOY_KEY }}