From 998dd4b67ab911856bbbccc7b63c97b6148e7dfb Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Mon, 18 Sep 2023 10:03:41 -0400 Subject: [PATCH] Emit tox config --- .github/workflows/main.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 425c2b5..a43f252 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -59,6 +59,8 @@ jobs: - name: Install tox run: | python -m pip install tox + - name: Emit tox config + run: tox config - name: Run run: tox @@ -127,7 +129,8 @@ jobs: run: | python -m pip install tox - name: Run - run: tox -e release + run: + tox -e release env: TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}