Skip to content

Commit

Permalink
Fix Docker build on main branch (#779)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielhollas authored Jul 19, 2024
1 parent 71cf2ff commit bdefa84
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker-build-test-upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ jobs:
uses: docker/build-push-action@v5
with:
tags: ${{ steps.meta.outputs.tags }}
load: ${{ github.event.pull_request.head.repo.fork }}
push: ${{ ! github.event.pull_request.head.repo.fork }}
load: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.repo.fork }}
push: ${{ ! (github.event_name == 'pull_request' && github.event.pull_request.head.repo.fork) }}
context: .
platforms: linux/amd64
cache-to: |
Expand Down
4 changes: 1 addition & 3 deletions tests_integration/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
---
version: '3.4'

services:

aiidalab:
image: ${REGISTRY:-}${QE_IMAGE:-aiidalab/qe}${TAG}
image: ${REGISTRY:-}${QE_IMAGE:-aiidalab/qe}${TAG:-}
environment:
TZ: Europe/Zurich
DOCKER_STACKS_JUPYTER_CMD: notebook
Expand Down

0 comments on commit bdefa84

Please sign in to comment.