Skip to content

Commit

Permalink
Revert buildkit; ignore push failures
Browse files Browse the repository at this point in the history
  • Loading branch information
sixeyed committed Jan 7, 2025
1 parent a665506 commit 6aeed19
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
3 changes: 1 addition & 2 deletions .github/actions/build/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,4 @@ runs:
env:
BUILD_IMAGES: ${{ inputs.images }}
BUILD_CHAPTERS: ${{ inputs.chapters }}
FILTER: ${{ inputs.filter }}
DOCKER_BUILDKIT: 0
FILTER: ${{ inputs.filter }}
3 changes: 1 addition & 2 deletions .github/actions/push-manifests/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,4 @@ runs:
env:
BUILD_IMAGES: ${{ inputs.images }}
BUILD_CHAPTERS: ${{ inputs.chapters }}
FILTER: ${{ inputs.filter }}
DOCKER_BUILDKIT: 0
FILTER: ${{ inputs.filter }}
4 changes: 2 additions & 2 deletions build/build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,11 @@ try {

if ($Filter -and ($Filter -ne '')) {
docker compose $composeFiles build --pull $Filter
docker compose $composeFiles push -q $Filter
docker compose $composeFiles push -q $Filter --ignore-push-failures
}
else {
docker compose $composeFiles build --pull
docker compose $composeFiles push -q
docker compose $composeFiles push -q --ignore-push-failures
}
}

Expand Down

0 comments on commit 6aeed19

Please sign in to comment.