diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 6f721a4..8fe672c 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -26,7 +26,7 @@ jobs: - name: Setup Python uses: actions/setup-python@v2 with: - python-version: ${{ matrix.python }} + python-version: ${{ matrix.python-version }} - name: Setup Tox run: pip install tox @@ -52,7 +52,7 @@ jobs: - name: Publish to PyPI # Only publish on tagged pushes when building py3.6 - if: matrix.version == '3.6' && github.event_name == 'push' && startsWith(github.ref, 'refs/tags') + if: matrix.python-version == '3.6' && github.event_name == 'push' && startsWith(github.ref, 'refs/tags') uses: pypa/gh-action-pypi-publish@master with: user: __token__