mirror of
https://mau.dev/andreijiroh-dev/website.git
synced 2024-11-12 20:32:26 +00:00
Implement workaround on failing image pushes
Details: https://github.com/moby/buildkit/issues/2713#issuecomment-1068540101 Signed-off-by: Andrei Jiroh Halili <ajhalili2006@gmail.com>
This commit is contained in:
parent
a3f0ab80b8
commit
2d2555bb9e
1 changed files with 14 additions and 4 deletions
18
.github/workflows/docker.yml
vendored
18
.github/workflows/docker.yml
vendored
|
@ -19,7 +19,7 @@ env:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-ci:
|
build-ci:
|
||||||
name: Build development environment
|
name: Build environment for GitLab CI/CD
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
|
@ -72,7 +72,7 @@ jobs:
|
||||||
quay.io/ajhalili2006/mkdocs-material-build-ci
|
quay.io/ajhalili2006/mkdocs-material-build-ci
|
||||||
tags: |
|
tags: |
|
||||||
type=raw,value=latest,enable={{is_default_branch}}
|
type=raw,value=latest,enable={{is_default_branch}}
|
||||||
type=sha,enable=true,priority=100,prefix=commit-,suffix=,format=short
|
type=sha,enable=true,priority=100,prefix=commit-,suffix=,format=long
|
||||||
type=schedule,pattern=nightly
|
type=schedule,pattern=nightly
|
||||||
|
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
@ -88,12 +88,20 @@ jobs:
|
||||||
with:
|
with:
|
||||||
context: docker
|
context: docker
|
||||||
#file: Dockerfile
|
#file: Dockerfile
|
||||||
push: ${{ github.event_name != 'pull_request' }}
|
# workaround: https://github.com/moby/buildkit/issues/2713#issuecomment-1068540101
|
||||||
|
push: false
|
||||||
|
load: true
|
||||||
tags: ${{ steps.meta.outputs.tags }}
|
tags: ${{ steps.meta.outputs.tags }}
|
||||||
labels: ${{ steps.meta.outputs.labels }}
|
labels: ${{ steps.meta.outputs.labels }}
|
||||||
cache-from: type=gha
|
cache-from: type=gha
|
||||||
cache-to: type=gha,mode=max
|
cache-to: type=gha,mode=max
|
||||||
|
- name: Workaround pushbot for misbehaving reverse proxies
|
||||||
|
if: ${{ github.event_name != 'pull_request' }}
|
||||||
|
run: |
|
||||||
|
for each ${{ steps.meta.outputs.tags }} in tag;
|
||||||
|
do
|
||||||
|
docker push $tag
|
||||||
|
done
|
||||||
|
|
||||||
# Sign the resulting Docker image digest except on PRs.
|
# Sign the resulting Docker image digest except on PRs.
|
||||||
# This will only write to the public Rekor transparency log when the Docker
|
# This will only write to the public Rekor transparency log when the Docker
|
||||||
|
@ -107,3 +115,5 @@ jobs:
|
||||||
# This step uses the identity token to provision an ephemeral certificate
|
# This step uses the identity token to provision an ephemeral certificate
|
||||||
# against the sigstore community Fulcio instance.
|
# against the sigstore community Fulcio instance.
|
||||||
run: echo "${{ steps.meta.outputs.tags }}" | xargs -I {} cosign sign {}@${{ steps.build-and-push.outputs.digest }}
|
run: echo "${{ steps.meta.outputs.tags }}" | xargs -I {} cosign sign {}@${{ steps.build-and-push.outputs.digest }}
|
||||||
|
devenv:
|
||||||
|
name: Generate Gitpod workspace image snapshot
|
Loading…
Reference in a new issue