From a9d4547f8f040eb0a330413651ee145cc6313be6 Mon Sep 17 00:00:00 2001 From: Patrick Mazulo Date: Tue, 14 Feb 2023 10:05:15 -0300 Subject: [PATCH] fix: Add a personal token to allow semantic-release to publish release --- .github/workflows/publish-to-test-pypi.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish-to-test-pypi.yml b/.github/workflows/publish-to-test-pypi.yml index 67d4d19..5cab11d 100644 --- a/.github/workflows/publish-to-test-pypi.yml +++ b/.github/workflows/publish-to-test-pypi.yml @@ -14,7 +14,10 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - name: Checking out.. + uses: actions/checkout@v3 + with: + token: ${{ secrets.PUBLISH_PYPI_TOKEN }} - name: Set up Python 3.10 uses: actions/setup-python@v4