diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8a1d16a..0e05f22 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -2,10 +2,11 @@ name: Main on: workflow_dispatch: - publish_artifacts: - description: 'Publish artifacts (Y|N)' - required: true - default: 'N' + inputs: + publish_artifacts: + description: 'Publish artifacts (Y|N)' + required: true + default: 'N' release: types: [published] push: @@ -215,13 +216,6 @@ jobs: name: dist-${{ matrix.os }}-${{ matrix.python-version }} path: dist - - name: Test wheels - if: | - !startsWith(matrix.os, 'windows') - run: | - pip install blacksheep -f "file:///${GITHUB_WORKSPACE}/dist" - pip freeze | grep blacksheep - publish: runs-on: ubuntu-latest needs: [build, build-wheels]