From 60de769b121658349a9f2cf07d457c2121b954dd Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Tue, 4 May 2021 01:29:36 +0300 Subject: workflows/test: tweak step names --- .github/workflows/test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to '.github/workflows') diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index dfe2965..cc6f339 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -70,19 +70,19 @@ jobs: python-version: 3.6 - name: Verify package can be installed run: python3 -m pip install . - - name: Install tools + - name: Install package builder run: python3 -m pip install --upgrade build - name: Build package run: python3 -m build - - name: Upload dist + - name: Publish as artifact uses: actions/upload-artifact@v2 with: name: dist path: dist if-no-files-found: error - - name: Publish package + - name: Publish to PyPI if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') uses: pypa/gh-action-pypi-publish@release/v1 with: user: __token__ - password: ${{ secrets.PYPI_API_TOKEN }} + password: '${{ secrets.PYPI_API_TOKEN }}' -- cgit v1.2.3