Skip to content

Commit

Permalink
feat(ct): disable caching during base image build
Browse files Browse the repository at this point in the history
The ARM64 remote build host will otherwise reuse the cache with potentially stale content
  • Loading branch information
poikilotherm committed Apr 12, 2024
1 parent 90cb9ce commit d7fbf87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/container_base_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ jobs:
id: build
# Do not build for v6.0 and v6.1. We can simply reuse the one from v6.2.
if: ${{ matrix.branch != 'v6.0' && matrix.branch != 'v6.1' }}
run: mvn -f modules/container-base -Pct deploy ${DOCKER_TAGS} -Ddocker.platforms=${{ env.PLATFORMS }}
run: mvn -f modules/container-base -Pct deploy -Ddocker.noCache ${DOCKER_TAGS} -Ddocker.platforms=${{ env.PLATFORMS }}

- if: ${{ github.event_name == 'push' && github.ref_name == 'develop' }}
name: Push description to DockerHub
Expand Down

0 comments on commit d7fbf87

Please sign in to comment.