Skip to content

Commit bb08699

Browse files
committed
temp timeout before checking attestation manifest digest
Signed-off-by: CrazyMax <[email protected]>
1 parent d342de9 commit bb08699

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.github/workflows/bake.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -531,6 +531,8 @@ jobs:
531531
INPUT_IMAGE-DIGEST: ${{ steps.get-image-digest.outputs.digest }}
532532
with:
533533
script: |
534+
// FIXME: remove once https://github.com/docker/github-builder-experimental/issues/30 is resolved
535+
await new Promise(resolve => setTimeout(resolve, 3000));
534536
const { Sigstore } = require('@docker/actions-toolkit/lib/sigstore/sigstore');
535537
536538
const inpImageNames = core.getMultilineInput('image-names');

.github/workflows/build.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -423,6 +423,8 @@ jobs:
423423
INPUT_IMAGE-DIGEST: ${{ steps.build.outputs.digest }}
424424
with:
425425
script: |
426+
// FIXME: remove once https://github.com/docker/github-builder-experimental/issues/30 is resolved
427+
await new Promise(resolve => setTimeout(resolve, 3000));
426428
const { Sigstore } = require('@docker/actions-toolkit/lib/sigstore/sigstore');
427429
428430
const inpImageNames = core.getMultilineInput('image-names');

0 commit comments

Comments
 (0)