From 88a0aaeab4c4b2adc78cdff2c67064f3ca0ee69f Mon Sep 17 00:00:00 2001 From: Aaron <29749331+aarnphm@users.noreply.github.com> Date: Wed, 16 Aug 2023 04:52:24 -0400 Subject: [PATCH] fix(wheels): make sure to run push after compiled is finished Signed-off-by: Aaron <29749331+aarnphm@users.noreply.github.com> --- .github/workflows/compile-pypi.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/compile-pypi.yml b/.github/workflows/compile-pypi.yml index 9d9e6616..ffdf7242 100644 --- a/.github/workflows/compile-pypi.yml +++ b/.github/workflows/compile-pypi.yml @@ -137,6 +137,7 @@ jobs: runs-on: ubuntu-latest permissions: id-token: write + needs: [pure-wheels-sdist, mypyc] steps: - name: Download Python artifacts uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # ratchet:actions/download-artifact@v3 @@ -169,9 +170,7 @@ jobs: repository-url: https://test.pypi.org/simple/ sucess-build: # https://github.com/marketplace/actions/alls-green#why if: always() - needs: - - pure-wheels-sdist - - mypyc + needs: [pure-wheels-sdist, mypyc] runs-on: ubuntu-latest outputs: success: ${{ steps.everygreen.outputs.success }}