Skip to content

Commit

Permalink
ci: 👷 align npm, pypi and binary releases
Browse files Browse the repository at this point in the history
  • Loading branch information
matteo-cristino committed Jul 4, 2023
1 parent a0ada61 commit 21e4c63
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -464,8 +464,7 @@ jobs:
npm-release:
name: 📦 npm release
runs-on: ubuntu-latest
needs: [semantic-release]
if: ${{ needs.semantic-release.outputs.release == 'True' }}
needs: [python-build-check, python-build-check-armv7, python-sdist]
steps:
- uses: actions/checkout@v3
with:
Expand Down Expand Up @@ -503,8 +502,7 @@ jobs:
build-release-on-ubuntu:
name: 🐧 Binary builds on Ubuntu
runs-on: ubuntu-latest
needs: [semantic-release]
if: ${{ needs.semantic-release.outputs.release == 'True' }}
needs: [python-build-check, python-build-check-armv7, python-sdist]
steps:
- name: Checkout repository
uses: actions/checkout@v3
Expand Down Expand Up @@ -559,7 +557,7 @@ jobs:
build-release-on-osx:
name: 🍎 mac osx release build
needs: [semantic-release]
needs: [python-build-check, python-build-check-armv7, python-sdist]
runs-on: macos-latest
if: ${{ needs.semantic-release.outputs.release == 'True' }}
steps:
Expand All @@ -578,7 +576,7 @@ jobs:
draft-binary-release:
name: 📦 Pack release
needs: [semantic-release, build-release-on-ubuntu]
needs: [semantic-release, build-release-on-ubuntu, build-release-on-osx]
runs-on: ubuntu-latest
steps:
- name: download binary artifacts
Expand Down

0 comments on commit 21e4c63

Please sign in to comment.