diff --git a/.github/workflows/build-test-publish.yaml b/.github/workflows/build-test-publish.yaml index caf1378..33b7249 100644 --- a/.github/workflows/build-test-publish.yaml +++ b/.github/workflows/build-test-publish.yaml @@ -114,6 +114,8 @@ jobs: run: | # make publish-test make publish-prod + env: + PROD_PYPI_TOKEN: ${{ secrets.PROD_PYPI_TOKEN }} - name: Push tags run: | git tag $(cat version.txt) diff --git a/run.sh b/run.sh index 50ff474..7c67691 100755 --- a/run.sh +++ b/run.sh @@ -105,8 +105,7 @@ function publish:test { twine upload dist/* \ --repository testpypi \ --username=__token__ \ - --password="$TEST_PYPI_TOKEN" \ - --verbose + --password="$TEST_PYPI_TOKEN" } function publish:prod { @@ -114,8 +113,7 @@ function publish:prod { twine upload dist/* \ --repository pypi \ --username=__token__ \ - --password="$PROD_PYPI_TOKEN" \ - --verbose + --password="$PROD_PYPI_TOKEN" } # remove all files generated by tests, builds, or operating this codebase diff --git a/version.txt b/version.txt index f9cece5..7df503e 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -v0.0.3 +v0.0.4