Skip to content

Commit

Permalink
💚 Build 3.9 and 3.12 docker images on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Borie, Niels authored and nielsborie committed Mar 5, 2024
1 parent 2274973 commit 9b01d87
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/build_and_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,11 @@ jobs:
sudo rm -rf /opt/ghc
sudo rm -rf "/usr/local/share/boost"
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
- name: ⚙️ Build and push image
- name: ⚙️📤 Build and push image
run: |
make build-all-images
- name: 📤 Push images
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develop'
run: |
make push-all-images
if [ "${{ github.ref }}" != 'refs/heads/main' ] && [ "${{ github.ref }}" != 'refs/heads/develop' ]; then
SUPPORTED_PYTHON_VERSIONS="3.9 3.12"
fi
make build-and-push-all-images
- name: 🎉 Image digest
run: echo ${{ steps.docker_build.outputs.digest }}

0 comments on commit 9b01d87

Please sign in to comment.