diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 8af8bc2c5..692ba4f12 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -13,7 +13,7 @@ jobs: fetch-depth: 0 - uses: actions/setup-python@v4 with: - python-version: 3.10 + python-version: "3.10" - name: Install dependencies and build run: | python3 -m pip install --upgrade pip build diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 09a9069d8..c3e0f323a 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -59,7 +59,7 @@ jobs: python${{ matrix.python-version }} -m pytest -v -s --cov=mpcontribs/client --cov-report=term-missing --cov-report=xml --ignore=bravado python${{ matrix.python-version }} -m build --outdir ../dist - name: Publish distribution 📦s to Test PyPI - if: matrix.os == 'ubuntu-latest' && matrix.python-version == 3.10 + if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.10' uses: pypa/gh-action-pypi-publish@release/v1.5 with: skip_existing: true