Skip to content

Commit

Permalink
Make sure to publish Docker images on release
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesbluca committed Oct 18, 2023
1 parent 198fc92 commit f4f9707
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
name: Push Docker image to Docker Hub
runs-on: ubuntu-latest
env:
DOCKER_PUSH: ${{ github.event_name == 'push' && github.repository == 'dask-contrib/dask-sql' }}
DOCKER_PUSH: ${{ github.event_name == 'release' || (github.event_name == 'push' && github.repository == 'dask-contrib/dask-sql') }}
strategy:
fail-fast: false
matrix:
Expand Down

0 comments on commit f4f9707

Please sign in to comment.