From ebf9bae81c72f6879c6fcb8910c1c8a046a54a9a Mon Sep 17 00:00:00 2001 From: Edward Knight Date: Fri, 9 Sep 2022 21:26:24 +0100 Subject: [PATCH] Fix twine environment variables not being exported --- .github/workflows/deploy.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 5dd718f..776a16e 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -21,6 +21,9 @@ jobs: run: twine check --strict dist/* - name: twine upload run: twine upload dist/* + env: + TWINE_USERNAME: ${{ secrets.TWINE_USERNAME }} + TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }} - name: Create GitHub Release uses: softprops/action-gh-release@v1 with: