From ac6b06bf1c6d9b80010067ccbe53d09ec7cd1804 Mon Sep 17 00:00:00 2001 From: iFA Date: Thu, 26 Aug 2021 11:18:26 +0200 Subject: [PATCH] Update build.yml --- .github/workflows/build.yml | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 79b3c2d..b4464fc 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -2,13 +2,17 @@ # For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions name: build -on: +# on: # push: # branches: # - 'release/**' - release: - types: - - created +on: + push: + branches: + - master +# release: +# types: +# - created jobs: # wheel: # runs-on: ${{ matrix.os }} @@ -57,6 +61,10 @@ jobs: # TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }} linux-wheels: runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + python-version: [3.7, 3.8, 3.9] steps: - uses: actions/checkout@v2 with: @@ -85,7 +93,7 @@ jobs: - name: Setup python${{ matrix.python }} uses: actions/setup-python@v2 with: - python-version: "3.9" + python-version: ${{ matrix.python-version }} # - name: Install requires # run: python -m pip install twine # - name: Publishing to pypi