Fix environment variables..?

hotfix/mipmap-alpha-fix
Andrew Cassidy 3 years ago
parent 22cc5f6148
commit 463956b63b

@ -54,13 +54,7 @@ jobs:
build:
needs: test
if: github.event_name == 'push'
runs-on: ${{ matrix.os }}
env:
MACOSX_DEPLOYMENT_TARGET: 10.15
CIBW_BUILD: { cp,pp }{ 37,38,39 }-*
CIBW_SKIP: "*-win32 *-manylinux_i686"
CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014
steps:
- uses: actions/checkout@v2
@ -76,6 +70,11 @@ jobs:
- name: Build wheels
uses: joerick/cibuildwheel@v1.11.0
env:
MACOSX_DEPLOYMENT_TARGET: "10.15"
CIBW_BUILD: "{ cp,pp }{ 37,38,39 }-*"
CIBW_SKIP: "*-win32 *-manylinux_i686"
CIBW_MANYLINUX_X86_64_IMAGE: "manylinux2014"
- name: Upload wheel as artifact
uses: actions/upload-artifact@v2

Loading…
Cancel
Save