We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d79b7e2 commit 93abe12Copy full SHA for 93abe12
.github/workflows/main.yml
@@ -43,7 +43,7 @@ jobs:
43
shell: pwsh
44
run: |
45
New-Item -Path build.log -ItemType File -Force
46
- docker build --cache-from app:latest --progress=plain -f docker/mount.dockerfile -t app:latest . | Tee-Object -FilePath build.log
+ docker build --cache-from app:latest -f docker/mount.dockerfile -t app:latest . | Tee-Object -FilePath build.log
47
$total_steps = (Get-Content build.log | Select-String -Pattern '^Step [0-9]+/' | Measure-Object).Count
48
$cache_hits = (Get-Content build.log | Select-String -Pattern '---> Using cache' | Measure-Object).Count
49
if ($cache_hits -eq $total_steps) {
0 commit comments