docker buildx imagetools create... failed with status 500 #14623

Closed
opened 2025-11-02 11:17:58 -06:00 by GiteaMirror · 9 comments
Owner

Originally created by @duguying on GitHub (Jun 19, 2025).

Description

release.yaml

name: ci

on:
  push:
    tags:
      - '*'

env:
  GITEA_REPO: git.duguying.net/duguying/studio

jobs:
  build:
    runs-on: ${{ matrix.platform }}
    strategy:
      fail-fast: false
      matrix:
        platform:
          - linux/amd64
          - linux/arm64
    steps:
      - name: Checkout Repo
        uses: actions/checkout@v4

      - name: Prepare
        run: |
          platform=${{ matrix.platform }}
          echo "PLATFORM_PAIR=${platform//\//-}" >> $GITHUB_ENV

      - name: Docker meta
        id: meta
        uses: docker/metadata-action@v5
        with:
          images: |
            ${{ env.GITEA_REPO }}

      - name: Log in to Gitea Docker Registry
        uses: docker/login-action@v3
        with:
          registry: git.duguying.net
          username: ${{ secrets.DOCKER_GITEA_USERNAME }}
          password: ${{ secrets.DOCKER_GITEA_TOKEN }}

      - name: Set up QEMU
        uses: docker/setup-qemu-action@v3

      - name: Set up Docker Buildx
        uses: docker/setup-buildx-action@v3

      - name: Build and push by digest
        id: build
        uses: docker/build-push-action@v6
        with:
          context: .
          file: Dockerfile
          push: true
          platforms: ${{ matrix.platform }}
          labels: ${{ steps.meta.outputs.labels }}
          outputs: type=image,"name=${{ env.GITEA_REPO }}",push-by-digest=true,name-canonical=true,push=true

      - name: Export digest
        run: |
          set -x #echo on
          mkdir -p /tmp/digests
          digest="${{ steps.build.outputs.digest }}"
          touch "/tmp/digests/${digest#sha256:}"

      - name: Upload digest
        uses: actions/upload-artifact@v3
        with:
          name: digests-${{ env.PLATFORM_PAIR }}
          path: /tmp/digests/*
          if-no-files-found: error
          retention-days: 1

  merge:
    runs-on: ubuntu-latest
    needs:
      - build
    steps:
      - name: Download digests
        uses: actions/download-artifact@v3
        with:
          path: /tmp/digests
          pattern: digests-*
          merge-multiple: true

      - name: Organize digests
        run: |
          set -x #echo on
          mv /tmp/digests/*/* /tmp/digests
          rm -rf /tmp/digests/digests-*
          ls -al /tmp/digests

      - name: Log in to Gitea Docker Registry
        uses: docker/login-action@v3
        with:
          registry: git.duguying.net
          username: ${{ secrets.DOCKER_GITEA_USERNAME }}
          password: ${{ secrets.DOCKER_GITEA_TOKEN }}

      - name: Set up Docker Buildx
        uses: docker/setup-buildx-action@v3

      - name: Docker meta
        id: meta
        uses: docker/metadata-action@v5
        with:
          images: |
            ${{ env.GITEA_REPO }}
          tags: |
            type=ref,event=branch
            type=ref,event=pr
            type=semver,pattern={{version}}
            type=semver,pattern={{major}}.{{minor}}

      - name: Create manifest list and push
        working-directory: /tmp/digests
        run: |
          set -x #echo on
          echo "$DOCKER_METADATA_OUTPUT_JSON"
          ls -al /tmp/digests
          docker buildx imagetools create $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \
            $(printf '${{ env.GITEA_REPO }}@sha256:%s ' *)

      - name: Inspect image
        run: |
          docker buildx imagetools inspect ${{ env.GITEA_REPO }}:${{ steps.meta.outputs.version }}

log

2025-06-04T06:18:23.2255436Z gitea_sz_runner_1(version:v0.2.11) received task 1539 of job 1418, be triggered by event: push
2025-06-04T06:18:23.2371220Z workflow prepared
2025-06-04T06:18:23.2371813Z evaluating expression 'success()'
2025-06-04T06:18:23.2382676Z expression 'success()' evaluated to 'true'
2025-06-04T06:18:23.2382832Z 'runs-on' key not defined in ci/build
2025-06-04T06:18:23.2382924Z No steps found
2025-06-04T06:18:23.2383752Z evaluating expression 'success()'
2025-06-04T06:18:23.2384161Z expression 'success()' evaluated to 'true'
2025-06-04T06:18:23.2384334Z 🚀  Start image=gitea/runner-images:ubuntu-latest
2025-06-04T06:18:23.2459015Z   🐳  docker pull image=gitea/runner-images:ubuntu-latest platform= username= forcePull=false
2025-06-04T06:18:23.2459290Z   🐳  docker pull gitea/runner-images:ubuntu-latest
2025-06-04T06:18:23.2565201Z Image exists? true
2025-06-04T06:18:23.2605888Z Cleaning up network for job merge, and network name is: GITEA-ACTIONS-TASK-1539_WORKFLOW-ci_JOB-merge-merge-network
2025-06-04T06:18:23.3090071Z   🐳  docker create image=gitea/runner-images:ubuntu-latest platform= entrypoint=["/bin/sleep" "18000"] cmd=[] network="GITEA-ACTIONS-TASK-1539_WORKFLOW-ci_JOB-merge-merge-network"
2025-06-04T06:18:23.3939964Z Created container name=GITEA-ACTIONS-TASK-1539_WORKFLOW-ci_JOB-merge id=e075aa3323d0d152cb7e22a9ed3661e2cccc67c80bb5a87cde865837e070c92c from image gitea/runner-images:ubuntu-latest (platform: )
2025-06-04T06:18:23.3941212Z ENV ==> [RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_ARCH=X64 RUNNER_TEMP=/tmp LANG=C.UTF-8]
2025-06-04T06:18:23.3941594Z   🐳  docker run image=gitea/runner-images:ubuntu-latest platform= entrypoint=["/bin/sleep" "18000"] cmd=[] network="GITEA-ACTIONS-TASK-1539_WORKFLOW-ci_JOB-merge-merge-network"
2025-06-04T06:18:23.3941867Z Starting container: e075aa3323d0d152cb7e22a9ed3661e2cccc67c80bb5a87cde865837e070c92c
2025-06-04T06:18:23.6193620Z Started container: e075aa3323d0d152cb7e22a9ed3661e2cccc67c80bb5a87cde865837e070c92c
2025-06-04T06:18:23.7370015Z Writing entry to tarball workflow/event.json len:4188
2025-06-04T06:18:23.7370937Z Writing entry to tarball workflow/envs.txt len:0
2025-06-04T06:18:23.7371206Z Extracting content to '/var/run/act/'
2025-06-04T06:18:23.7504907Z   ☁  git clone 'https://github.com/actions/download-artifact' # ref=v3
2025-06-04T06:18:23.7505166Z   cloning https://github.com/actions/download-artifact to /root/.cache/act/97775bd2c13e122852504b69e1b0c39c28550283125cd4f3cde608926c13f996
2025-06-04T06:18:25.2394424Z Unable to pull refs/heads/v3: worktree contains unstaged changes
2025-06-04T06:18:25.2394795Z Cloned https://github.com/actions/download-artifact to /root/.cache/act/97775bd2c13e122852504b69e1b0c39c28550283125cd4f3cde608926c13f996
2025-06-04T06:18:25.2496699Z Checked out v3
2025-06-04T06:18:25.2564953Z   ☁  git clone 'https://github.com/docker/login-action' # ref=v3
2025-06-04T06:18:25.2565347Z   cloning https://github.com/docker/login-action to /root/.cache/act/f4980c6ac598e909987ac91567f6966749e4ffb3917249bbe2a2399d45f65943
2025-06-04T06:18:27.6011780Z Unable to pull refs/heads/v3: worktree contains unstaged changes
2025-06-04T06:18:27.6012174Z Cloned https://github.com/docker/login-action to /root/.cache/act/f4980c6ac598e909987ac91567f6966749e4ffb3917249bbe2a2399d45f65943
2025-06-04T06:18:27.6906061Z Checked out v3
2025-06-04T06:18:27.6961776Z   ☁  git clone 'https://github.com/docker/setup-buildx-action' # ref=v3
2025-06-04T06:18:27.6962073Z   cloning https://github.com/docker/setup-buildx-action to /root/.cache/act/6a647958c11e138a6cfcaf32d2b372bc8e0c97871d617bfb441d003d505b77cf
2025-06-04T06:18:29.1023661Z Unable to pull refs/heads/v3: worktree contains unstaged changes
2025-06-04T06:18:29.1024137Z Cloned https://github.com/docker/setup-buildx-action to /root/.cache/act/6a647958c11e138a6cfcaf32d2b372bc8e0c97871d617bfb441d003d505b77cf
2025-06-04T06:18:29.2032581Z Checked out v3
2025-06-04T06:18:29.2087663Z   ☁  git clone 'https://github.com/docker/metadata-action' # ref=v5
2025-06-04T06:18:29.2088037Z   cloning https://github.com/docker/metadata-action to /root/.cache/act/bcd26377c6fbfb33a804ad7d884c58b832133e558f518b09111bfd2c3b68d901
2025-06-04T06:18:31.0754322Z Unable to pull refs/heads/v5: worktree contains unstaged changes
2025-06-04T06:18:31.0754847Z Cloned https://github.com/docker/metadata-action to /root/.cache/act/bcd26377c6fbfb33a804ad7d884c58b832133e558f518b09111bfd2c3b68d901
2025-06-04T06:18:31.1852841Z Checked out v5
2025-06-04T06:18:31.2031974Z evaluating expression ''
2025-06-04T06:18:31.2032576Z expression '' evaluated to 'true'
2025-06-04T06:18:31.2032767Z ⭐ Run Main Download digests
2025-06-04T06:18:31.2033021Z Writing entry to tarball workflow/outputcmd.txt len:0
2025-06-04T06:18:31.2033206Z Writing entry to tarball workflow/statecmd.txt len:0
2025-06-04T06:18:31.2033344Z Writing entry to tarball workflow/pathcmd.txt len:0
2025-06-04T06:18:31.2033469Z Writing entry to tarball workflow/envs.txt len:0
2025-06-04T06:18:31.2033572Z Writing entry to tarball workflow/SUMMARY.md len:0
2025-06-04T06:18:31.2033731Z Extracting content to '/var/run/act'
2025-06-04T06:18:31.2091688Z type=remote-action actionDir=/root/.cache/act/97775bd2c13e122852504b69e1b0c39c28550283125cd4f3cde608926c13f996 actionPath= workdir=/workspace/***/studio actionCacheDir=/root/.cache/act actionName=97775bd2c13e122852504b69e1b0c39c28550283125cd4f3cde608926c13f996 containerActionDir=/var/run/act/actions/97775bd2c13e122852504b69e1b0c39c28550283125cd4f3cde608926c13f996
2025-06-04T06:18:31.2092013Z /var/run/act/actions/97775bd2c13e122852504b69e1b0c39c28550283125cd4f3cde608926c13f996
2025-06-04T06:18:31.2092247Z Removing /root/.cache/act/97775bd2c13e122852504b69e1b0c39c28550283125cd4f3cde608926c13f996/.gitignore before docker cp
2025-06-04T06:18:31.2092860Z   🐳  docker cp src=/root/.cache/act/97775bd2c13e122852504b69e1b0c39c28550283125cd4f3cde608926c13f996/ dst=/var/run/act/actions/97775bd2c13e122852504b69e1b0c39c28550283125cd4f3cde608926c13f996/
2025-06-04T06:18:31.2103130Z Writing tarball /tmp/act2319377334 from /root/.cache/act/97775bd2c13e122852504b69e1b0c39c28550283125cd4f3cde608926c13f996/
2025-06-04T06:18:31.2103318Z Stripping prefix:/root/.cache/act/97775bd2c13e122852504b69e1b0c39c28550283125cd4f3cde608926c13f996/ src:/root/.cache/act/97775bd2c13e122852504b69e1b0c39c28550283125cd4f3cde608926c13f996/
2025-06-04T06:18:31.3572175Z Extracting content from '/tmp/act2319377334' to '/var/run/act/actions/97775bd2c13e122852504b69e1b0c39c28550283125cd4f3cde608926c13f996/'
2025-06-04T06:18:31.3873579Z executing remote job container: [node /var/run/act/actions/97775bd2c13e122852504b69e1b0c39c28550283125cd4f3cde608926c13f996/dist/index.js]
2025-06-04T06:18:31.3874004Z   🐳  docker exec cmd=[node /var/run/act/actions/97775bd2c13e122852504b69e1b0c39c28550283125cd4f3cde608926c13f996/dist/index.js] user= workdir=
2025-06-04T06:18:31.3874114Z Exec command '[node /var/run/act/actions/97775bd2c13e122852504b69e1b0c39c28550283125cd4f3cde608926c13f996/dist/index.js]'
2025-06-04T06:18:31.3874348Z Working directory '/workspace/***/studio'
2025-06-04T06:18:31.4790636Z No artifact name specified, downloading all artifacts
2025-06-04T06:18:31.4790755Z Creating an extra directory for each artifact that is being downloaded
2025-06-04T06:18:31.5610314Z starting download of artifact digests-linux-amd64 : 1/2
2025-06-04T06:18:31.5685685Z Total number of files that will be downloaded: 1
2025-06-04T06:18:31.5750129Z Skipping download validation.
2025-06-04T06:18:31.5751488Z starting download of artifact digests-linux-arm64 : 2/2
2025-06-04T06:18:31.5823852Z Total number of files that will be downloaded: 1
2025-06-04T06:18:31.5899197Z Skipping download validation.
2025-06-04T06:18:31.5899981Z There were 2 artifacts downloaded
2025-06-04T06:18:31.5900052Z Artifact digests-linux-amd64 was downloaded to /tmp/digests/digests-linux-amd64
2025-06-04T06:18:31.5900137Z Artifact digests-linux-arm64 was downloaded to /tmp/digests/digests-linux-arm64
2025-06-04T06:18:31.5912724Z Artifact download has finished successfully
2025-06-04T06:18:31.7363112Z + mv /tmp/digests/digests-linux-amd64/4d5dfc2dec07b44939ffc9d7834a4a5f399d91d6f29a117c17d3864375f79cb6 /tmp/digests/digests-linux-arm64/e2bea18c9cf78764342237371f45112ed9dd295c1efdca48217072d08af24cf5 /tmp/digests
2025-06-04T06:18:31.7508709Z + rm -rf /tmp/digests/digests-linux-amd64 /tmp/digests/digests-linux-arm64
2025-06-04T06:18:31.7539498Z + ls -al /tmp/digests
2025-06-04T06:18:31.7592451Z total 8
2025-06-04T06:18:31.7592604Z drwxr-xr-x 2 root root 4096 Jun  4 06:18 .
2025-06-04T06:18:31.7592729Z drwxrwxrwt 1 root root 4096 Jun  4 06:18 ..
2025-06-04T06:18:31.7592799Z -rw-r--r-- 1 root root    0 Jun  4 06:18 4d5dfc2dec07b44939ffc9d7834a4a5f399d91d6f29a117c17d3864375f79cb6
2025-06-04T06:18:31.7592906Z -rw-r--r-- 1 root root    0 Jun  4 06:18 e2bea18c9cf78764342237371f45112ed9dd295c1efdca48217072d08af24cf5
2025-06-04T06:18:34.4482551Z Logging into git.***.net...
2025-06-04T06:18:34.7363893Z Login Succeeded!
2025-06-04T06:18:36.7046940Z ::group::Docker info
2025-06-04T06:18:36.7072390Z [command]/usr/bin/docker version
2025-06-04T06:18:36.7296678Z Client:
2025-06-04T06:18:36.7298756Z  Version:           27.5.1-1
2025-06-04T06:18:36.7298959Z  API version:       1.47
2025-06-04T06:18:36.7299069Z  Go version:        go1.22.11
2025-06-04T06:18:36.7299188Z  Git commit:        9f9e4058019a37304dc6572ffcbb409d529b59d8
2025-06-04T06:18:36.7299319Z  Built:             Tue Jan 21 23:46:20 UTC 2025
2025-06-04T06:18:36.7299423Z  OS/Arch:           linux/amd64
2025-06-04T06:18:36.7299519Z  Context:           default
2025-06-04T06:18:36.7299623Z 
2025-06-04T06:18:36.7299728Z Server: Docker Engine - Community
2025-06-04T06:18:36.7299824Z  Engine:
2025-06-04T06:18:36.7299931Z   Version:          28.0.1
2025-06-04T06:18:36.7300057Z   API version:      1.48 (minimum version 1.24)
2025-06-04T06:18:36.7300154Z   Go version:       go1.23.6
2025-06-04T06:18:36.7300248Z   Git commit:       bbd0a17
2025-06-04T06:18:36.7300351Z   Built:            Wed Feb 26 10:41:16 2025
2025-06-04T06:18:36.7300453Z   OS/Arch:          linux/amd64
2025-06-04T06:18:36.7300584Z   Experimental:     false
2025-06-04T06:18:36.7300686Z  containerd:
2025-06-04T06:18:36.7300790Z   Version:          1.7.25
2025-06-04T06:18:36.7300892Z   GitCommit:        bcc810d6b9066471b0b6fa75f557a15a1cbf31bb
2025-06-04T06:18:36.7301015Z  runc:
2025-06-04T06:18:36.7301137Z   Version:          1.2.4
2025-06-04T06:18:36.7301237Z   GitCommit:        v1.2.4-0-g6c52b3f
2025-06-04T06:18:36.7301332Z  docker-init:
2025-06-04T06:18:36.7301422Z   Version:          0.19.0
2025-06-04T06:18:36.7301523Z   GitCommit:        de40ad0
2025-06-04T06:18:36.7327610Z [command]/usr/bin/docker info
2025-06-04T06:18:43.2246646Z Client:
2025-06-04T06:18:43.2246939Z  Version:    27.5.1-1
2025-06-04T06:18:43.2247100Z  Context:    default
2025-06-04T06:18:43.2247172Z  Debug Mode: false
2025-06-04T06:18:43.2247242Z  Plugins:
2025-06-04T06:18:43.2247311Z   buildx: Docker Buildx (Docker Inc.)
2025-06-04T06:18:43.2247384Z     Version:  0.21.1-1
2025-06-04T06:18:43.2247444Z     Path:     /usr/libexec/docker/cli-plugins/docker-buildx
2025-06-04T06:18:43.2247508Z   compose: Docker Compose (Docker Inc.)
2025-06-04T06:18:43.2247579Z     Version:  2.33.1-1
2025-06-04T06:18:43.2247633Z     Path:     /usr/libexec/docker/cli-plugins/docker-compose
2025-06-04T06:18:43.2247705Z 
2025-06-04T06:18:43.2247756Z Server:
2025-06-04T06:18:43.2247822Z  Containers: 2
2025-06-04T06:18:43.2247877Z   Running: 2
2025-06-04T06:18:43.2247931Z   Paused: 0
2025-06-04T06:18:43.2248023Z   Stopped: 0
2025-06-04T06:18:43.2248080Z  Images: 10
2025-06-04T06:18:43.2248142Z  Server Version: 28.0.1
2025-06-04T06:18:43.2248212Z  Storage Driver: overlay2
2025-06-04T06:18:43.2248283Z   Backing Filesystem: extfs
2025-06-04T06:18:43.2248338Z   Supports d_type: true
2025-06-04T06:18:43.2248389Z   Using metacopy: false
2025-06-04T06:18:43.2248449Z   Native Overlay Diff: true
2025-06-04T06:18:43.2248501Z   userxattr: false
2025-06-04T06:18:43.2248567Z  Logging Driver: json-file
2025-06-04T06:18:43.2248620Z  Cgroup Driver: systemd
2025-06-04T06:18:43.2248680Z  Cgroup Version: 2
2025-06-04T06:18:43.2248731Z  Plugins:
2025-06-04T06:18:43.2248791Z   Volume: local
2025-06-04T06:18:43.2248872Z   Network: bridge host ipvlan macvlan null overlay
2025-06-04T06:18:43.2248935Z   Log: awslogs fluentd gcplogs gelf journald json-file local splunk syslog
2025-06-04T06:18:43.2249017Z  Swarm: inactive
2025-06-04T06:18:43.2249076Z  Runtimes: io.containerd.runc.v2 runc
2025-06-04T06:18:43.2249141Z  Default Runtime: runc
2025-06-04T06:18:43.2249192Z  Init Binary: docker-init
2025-06-04T06:18:43.2249242Z  containerd version: bcc810d6b9066471b0b6fa75f557a15a1cbf31bb
2025-06-04T06:18:43.2249316Z  runc version: v1.2.4-0-g6c52b3f
2025-06-04T06:18:43.2249368Z  init version: de40ad0
2025-06-04T06:18:43.2249435Z  Security Options:
2025-06-04T06:18:43.2249485Z   apparmor
2025-06-04T06:18:43.2249546Z   seccomp
2025-06-04T06:18:43.2249594Z    Profile: builtin
2025-06-04T06:18:43.2249645Z   cgroupns
2025-06-04T06:18:43.2249712Z  Kernel Version: 6.1.0-31-amd64
2025-06-04T06:18:43.2249765Z  Operating System: Debian GNU/Linux 12 (bookworm)
2025-06-04T06:18:43.2249828Z  OSType: linux
2025-06-04T06:18:43.2249885Z  Architecture: x86_64
2025-06-04T06:18:43.2249950Z  CPUs: 8
2025-06-04T06:18:43.2250001Z  Total Memory: 3.822GiB
2025-06-04T06:18:43.2250054Z  Name: debian-runner
2025-06-04T06:18:43.2250117Z  ID: 3f6011f6-93a7-4121-9ab1-dad88241b243
2025-06-04T06:18:43.2250169Z  Docker Root Dir: /var/lib/docker
2025-06-04T06:18:43.2250232Z  Debug Mode: false
2025-06-04T06:18:43.2250282Z  Experimental: false
2025-06-04T06:18:43.2250341Z  Insecure Registries:
2025-06-04T06:18:43.2250471Z   ::1/128
2025-06-04T06:18:43.2250527Z   127.0.0.0/8
2025-06-04T06:18:43.2250596Z  Live Restore Enabled: false
2025-06-04T06:18:43.2250649Z 
2025-06-04T06:18:43.2261546Z ::endgroup::
2025-06-04T06:18:43.2953995Z ::group::Buildx version
2025-06-04T06:18:43.2997901Z [command]/usr/bin/docker buildx version
2025-06-04T06:18:43.3571074Z github.com/docker/buildx 0.21.1-1 7c2359c6bf8b3331413c0fe95918fe1cfe9aa127
2025-06-04T06:18:43.3595320Z ::endgroup::
2025-06-04T06:18:43.3735815Z ::group::Inspecting default docker context
2025-06-04T06:18:43.3880875Z [
2025-06-04T06:18:43.3881247Z   {
2025-06-04T06:18:43.3881344Z     "Name": "default",
2025-06-04T06:18:43.3881424Z     "Metadata": {},
2025-06-04T06:18:43.3881497Z     "Endpoints": {
2025-06-04T06:18:43.3881556Z       "docker": {
2025-06-04T06:18:43.3881639Z         "Host": "unix:///var/run/docker.sock",
2025-06-04T06:18:43.3881708Z         "SkipTLSVerify": false
2025-06-04T06:18:43.3881765Z       }
2025-06-04T06:18:43.3881825Z     },
2025-06-04T06:18:43.3881878Z     "TLSMaterial": {},
2025-06-04T06:18:43.3881938Z     "Storage": {
2025-06-04T06:18:43.3881989Z       "MetadataPath": "<IN MEMORY>",
2025-06-04T06:18:43.3882061Z       "TLSPath": "<IN MEMORY>"
2025-06-04T06:18:43.3882132Z     }
2025-06-04T06:18:43.3882186Z   }
2025-06-04T06:18:43.3882235Z ]
2025-06-04T06:18:43.3882385Z ::endgroup::
2025-06-04T06:18:43.3882546Z ::group::Creating a new builder instance
2025-06-04T06:18:43.4451402Z [command]/usr/bin/docker buildx create --name builder-64208f18-c951-4f46-86e8-545bad2c92c8 --driver docker-container --buildkitd-flags --allow-insecure-entitlement security.insecure --allow-insecure-entitlement network.host --use
2025-06-04T06:18:43.4933732Z builder-64208f18-c951-4f46-86e8-545bad2c92c8
2025-06-04T06:18:43.4960439Z ::endgroup::
2025-06-04T06:18:43.4960794Z ::group::Booting builder
2025-06-04T06:18:43.4985143Z [command]/usr/bin/docker buildx inspect --bootstrap --builder builder-64208f18-c951-4f46-86e8-545bad2c92c8
2025-06-04T06:18:43.5403827Z #1 [internal] booting buildkit
2025-06-04T06:18:43.6914403Z #1 pulling image moby/buildkit:buildx-stable-1
2025-06-04T06:18:47.4412694Z #1 pulling image moby/buildkit:buildx-stable-1 3.9s done
2025-06-04T06:18:47.4413097Z #1 creating container buildx_buildkit_builder-64208f18-c951-4f46-86e8-545bad2c92c80
2025-06-04T06:18:48.3633360Z #1 creating container buildx_buildkit_builder-64208f18-c951-4f46-86e8-545bad2c92c80 0.9s done
2025-06-04T06:18:48.3655821Z #1 DONE 4.8s
2025-06-04T06:18:48.4198243Z Name:          builder-64208f18-c951-4f46-86e8-545bad2c92c8
2025-06-04T06:18:48.4198629Z Driver:        docker-container
2025-06-04T06:18:48.4198770Z Last Activity: 2025-06-04 06:18:43 +0000 UTC
2025-06-04T06:18:48.4198935Z 
2025-06-04T06:18:48.4199039Z Nodes:
2025-06-04T06:18:48.4199167Z Name:                  builder-64208f18-c951-4f46-86e8-545bad2c92c80
2025-06-04T06:18:48.4199293Z Endpoint:              unix:///var/run/docker.sock
2025-06-04T06:18:48.4199406Z Status:                running
2025-06-04T06:18:48.4199632Z BuildKit daemon flags: --allow-insecure-entitlement security.insecure --allow-insecure-entitlement network.host
2025-06-04T06:18:48.4199806Z BuildKit version:      v0.21.1
2025-06-04T06:18:48.4200018Z Platforms:             linux/amd64, linux/amd64/v2, linux/amd64/v3, linux/arm64, linux/riscv64, linux/ppc64le, linux/s390x, linux/386, linux/mips64le, linux/mips64, linux/loong64, linux/arm/v7, linux/arm/v6
2025-06-04T06:18:48.4200195Z Labels:
2025-06-04T06:18:48.4200305Z  org.mobyproject.buildkit.worker.executor:         oci
2025-06-04T06:18:48.4200414Z  org.mobyproject.buildkit.worker.hostname:         76bfc56d2ef7
2025-06-04T06:18:48.4200521Z  org.mobyproject.buildkit.worker.network:          host
2025-06-04T06:18:48.4200622Z  org.mobyproject.buildkit.worker.oci.process-mode: sandbox
2025-06-04T06:18:48.4200726Z  org.mobyproject.buildkit.worker.selinux.enabled:  false
2025-06-04T06:18:48.4200850Z  org.mobyproject.buildkit.worker.snapshotter:      overlayfs
2025-06-04T06:18:48.4200951Z GC Policy rule#0:
2025-06-04T06:18:48.4201044Z  All:            false
2025-06-04T06:18:48.4201138Z  Filters:        type==source.local,type==exec.cachemount,type==source.git.checkout
2025-06-04T06:18:48.4201255Z  Keep Duration:  48h0m0s
2025-06-04T06:18:48.4201370Z  Max Used Space: 488.3MiB
2025-06-04T06:18:48.4201472Z GC Policy rule#1:
2025-06-04T06:18:48.4201565Z  All:            false
2025-06-04T06:18:48.4201656Z  Keep Duration:  1440h0m0s
2025-06-04T06:18:48.4201751Z  Reserved Space: 9.313GiB
2025-06-04T06:18:48.4201844Z  Max Used Space: 72.64GiB
2025-06-04T06:18:48.4201933Z  Min Free Space: 18.63GiB
2025-06-04T06:18:48.4202022Z GC Policy rule#2:
2025-06-04T06:18:48.4202111Z  All:            false
2025-06-04T06:18:48.4202206Z  Reserved Space: 9.313GiB
2025-06-04T06:18:48.4202308Z  Max Used Space: 72.64GiB
2025-06-04T06:18:48.4202398Z  Min Free Space: 18.63GiB
2025-06-04T06:18:48.4202486Z GC Policy rule#3:
2025-06-04T06:18:48.4202570Z  All:            true
2025-06-04T06:18:48.4202667Z  Reserved Space: 9.313GiB
2025-06-04T06:18:48.4202754Z  Max Used Space: 72.64GiB
2025-06-04T06:18:48.4202841Z  Min Free Space: 18.63GiB
2025-06-04T06:18:48.4230940Z ::endgroup::
2025-06-04T06:18:48.5218880Z ::group::Inspect builder
2025-06-04T06:18:48.5219310Z {
2025-06-04T06:18:48.5219451Z   "nodes": [
2025-06-04T06:18:48.5219572Z     {
2025-06-04T06:18:48.5219712Z       "name": "builder-64208f18-c951-4f46-86e8-545bad2c92c80",
2025-06-04T06:18:48.5219875Z       "endpoint": "unix:///var/run/docker.sock",
2025-06-04T06:18:48.5220017Z       "status": "running",
2025-06-04T06:18:48.5220132Z       "buildkitd-flags": "--allow-insecure-entitlement security.insecure --allow-insecure-entitlement network.host",
2025-06-04T06:18:48.5220306Z       "buildkit": "v0.21.1",
2025-06-04T06:18:48.5220440Z       "platforms": "linux/amd64,linux/amd64/v2,linux/amd64/v3,linux/arm64,linux/riscv64,linux/ppc64le,linux/s390x,linux/386,linux/mips64le,linux/mips64,linux/loong64,linux/arm/v7,linux/arm/v6",
2025-06-04T06:18:48.5220613Z       "features": {
2025-06-04T06:18:48.5220732Z         "Automatically load images to the Docker Engine image store": true,
2025-06-04T06:18:48.5220880Z         "Cache export": true,
2025-06-04T06:18:48.5220993Z         "Docker exporter": true,
2025-06-04T06:18:48.5221112Z         "Multi-platform build": true,
2025-06-04T06:18:48.5221203Z         "OCI exporter": true
2025-06-04T06:18:48.5221281Z       },
2025-06-04T06:18:48.5221356Z       "labels": {
2025-06-04T06:18:48.5221432Z         "org.mobyproject.buildkit.worker.executor": "oci",
2025-06-04T06:18:48.5221514Z         "org.mobyproject.buildkit.worker.hostname": "76bfc56d2ef7",
2025-06-04T06:18:48.5221598Z         "org.mobyproject.buildkit.worker.network": "host",
2025-06-04T06:18:48.5221681Z         "org.mobyproject.buildkit.worker.oci.process-mode": "sandbox",
2025-06-04T06:18:48.5221768Z         "org.mobyproject.buildkit.worker.selinux.enabled": "false",
2025-06-04T06:18:48.5221849Z         "org.mobyproject.buildkit.worker.snapshotter": "overlayfs"
2025-06-04T06:18:48.5221987Z       },
2025-06-04T06:18:48.5222120Z       "gcPolicy": [
2025-06-04T06:18:48.5222202Z         {
2025-06-04T06:18:48.5222273Z           "all": false,
2025-06-04T06:18:48.5222344Z           "filter": [
2025-06-04T06:18:48.5222424Z             "type==source.local",
2025-06-04T06:18:48.5222504Z             "type==exec.cachemount",
2025-06-04T06:18:48.5222576Z             "type==source.git.checkout"
2025-06-04T06:18:48.5222651Z           ],
2025-06-04T06:18:48.5222737Z           "keepDuration": "48h0m0s"
2025-06-04T06:18:48.5222807Z         },
2025-06-04T06:18:48.5222885Z         {
2025-06-04T06:18:48.5222952Z           "all": false,
2025-06-04T06:18:48.5223023Z           "keepDuration": "1440h0m0s"
2025-06-04T06:18:48.5223093Z         },
2025-06-04T06:18:48.5223176Z         {
2025-06-04T06:18:48.5223280Z           "all": false
2025-06-04T06:18:48.5223365Z         },
2025-06-04T06:18:48.5223436Z         {
2025-06-04T06:18:48.5223502Z           "all": true
2025-06-04T06:18:48.5223574Z         }
2025-06-04T06:18:48.5223639Z       ]
2025-06-04T06:18:48.5223711Z     }
2025-06-04T06:18:48.5223774Z   ],
2025-06-04T06:18:48.5223842Z   "name": "builder-64208f18-c951-4f46-86e8-545bad2c92c8",
2025-06-04T06:18:48.5223935Z   "driver": "docker-container",
2025-06-04T06:18:48.5224007Z   "lastActivity": "2025-06-04T06:18:43.000Z"
2025-06-04T06:18:48.5224079Z }
2025-06-04T06:18:48.5225781Z ::endgroup::
2025-06-04T06:18:48.5226355Z ::group::BuildKit version
2025-06-04T06:18:48.5227710Z builder-64208f18-c951-4f46-86e8-545bad2c92c80: v0.21.1
2025-06-04T06:18:48.5228181Z ::endgroup::
2025-06-04T06:18:50.3530482Z ::group::Context info
2025-06-04T06:18:50.3530763Z eventName: push
2025-06-04T06:18:50.3530878Z sha: ac9f68ab1e0010c5319b08ab9e9a33900980f579
2025-06-04T06:18:50.3531020Z ref: refs/tags/v1.1.5
2025-06-04T06:18:50.3531141Z workflow: ci
2025-06-04T06:18:50.3531291Z action: meta
2025-06-04T06:18:50.3531382Z actor: ***
2025-06-04T06:18:50.3531523Z runNumber: 204
2025-06-04T06:18:50.3531647Z runId: 1136
2025-06-04T06:18:50.4336575Z commitDate: Wed Jun 04 2025 05:36:57 GMT+0000 (Coordinated Universal Time)
2025-06-04T06:18:50.4337054Z ::endgroup::
2025-06-04T06:18:50.4341808Z ::group::Processing images input
2025-06-04T06:18:50.4341886Z name=git.***.net/***/studio,enable=true
2025-06-04T06:18:50.4342042Z ::endgroup::
2025-06-04T06:18:50.4353877Z ::group::Processing tags input
2025-06-04T06:18:50.4353982Z type=semver,pattern={{version}},value=,enable=true,priority=900
2025-06-04T06:18:50.4354059Z type=semver,pattern={{major}}.{{minor}},value=,enable=true,priority=900
2025-06-04T06:18:50.4354130Z type=ref,event=branch,enable=true,priority=600
2025-06-04T06:18:50.4354190Z type=ref,event=pr,prefix=pr-,enable=true,priority=600
2025-06-04T06:18:50.4354332Z ::endgroup::
2025-06-04T06:18:50.4354477Z ::group::Processing flavor input
2025-06-04T06:18:50.4354542Z latest=auto
2025-06-04T06:18:50.4354628Z prefix=
2025-06-04T06:18:50.4354689Z prefixLatest=false
2025-06-04T06:18:50.4354745Z suffix=
2025-06-04T06:18:50.4354797Z suffixLatest=false
2025-06-04T06:18:50.4354906Z ::endgroup::
2025-06-04T06:18:50.4415763Z ::group::Docker image version
2025-06-04T06:18:50.4415898Z 1.1.5
2025-06-04T06:18:50.4416021Z ::endgroup::
2025-06-04T06:18:50.4418252Z ::group::Docker tags
2025-06-04T06:18:50.4418398Z git.***.net/***/studio:1.1.5
2025-06-04T06:18:50.4418479Z git.***.net/***/studio:1.1
2025-06-04T06:18:50.4418540Z git.***.net/***/studio:latest
2025-06-04T06:18:50.4418663Z ::endgroup::
2025-06-04T06:18:50.5660856Z ::group::Docker labels
2025-06-04T06:18:50.5661154Z org.opencontainers.image.created=2025-06-04T06:18:50.435Z
2025-06-04T06:18:50.5661234Z org.opencontainers.image.description=
2025-06-04T06:18:50.5661313Z org.opencontainers.image.licenses=
2025-06-04T06:18:50.5661373Z org.opencontainers.image.revision=ac9f68ab1e0010c5319b08ab9e9a33900980f579
2025-06-04T06:18:50.5661461Z org.opencontainers.image.source=https://git.***.net/***/studio
2025-06-04T06:18:50.5661535Z org.opencontainers.image.title=studio
2025-06-04T06:18:50.5661592Z org.opencontainers.image.url=https://git.***.net/***/studio
2025-06-04T06:18:50.5661663Z org.opencontainers.image.version=1.1.5
2025-06-04T06:18:50.5663113Z ::endgroup::
2025-06-04T06:18:50.5664111Z ::group::Annotations
2025-06-04T06:18:50.5664552Z manifest:org.opencontainers.image.created=2025-06-04T06:18:50.435Z
2025-06-04T06:18:50.5664644Z manifest:org.opencontainers.image.description=
2025-06-04T06:18:50.5664716Z manifest:org.opencontainers.image.licenses=
2025-06-04T06:18:50.5664776Z manifest:org.opencontainers.image.revision=ac9f68ab1e0010c5319b08ab9e9a33900980f579
2025-06-04T06:18:50.5664860Z manifest:org.opencontainers.image.source=https://git.***.net/***/studio
2025-06-04T06:18:50.5664921Z manifest:org.opencontainers.image.title=studio
2025-06-04T06:18:50.5664988Z manifest:org.opencontainers.image.url=https://git.***.net/***/studio
2025-06-04T06:18:50.5665047Z manifest:org.opencontainers.image.version=1.1.5
2025-06-04T06:18:50.5667269Z ::endgroup::
2025-06-04T06:18:50.5670410Z ::group::JSON output
2025-06-04T06:18:50.5670724Z {
2025-06-04T06:18:50.5670804Z   "tags": [
2025-06-04T06:18:50.5670861Z     "git.***.net/***/studio:1.1.5",
2025-06-04T06:18:50.5670942Z     "git.***.net/***/studio:1.1",
2025-06-04T06:18:50.5670999Z     "git.***.net/***/studio:latest"
2025-06-04T06:18:50.5671066Z   ],
2025-06-04T06:18:50.5671119Z   "labels": {
2025-06-04T06:18:50.5671178Z     "org.opencontainers.image.created": "2025-06-04T06:18:50.435Z",
2025-06-04T06:18:50.5671280Z     "org.opencontainers.image.description": "",
2025-06-04T06:18:50.5671334Z     "org.opencontainers.image.licenses": "",
2025-06-04T06:18:50.5671403Z     "org.opencontainers.image.revision": "ac9f68ab1e0010c5319b08ab9e9a33900980f579",
2025-06-04T06:18:50.5671462Z     "org.opencontainers.image.source": "https://git.***.net/***/studio",
2025-06-04T06:18:50.5671534Z     "org.opencontainers.image.title": "studio",
2025-06-04T06:18:50.5671587Z     "org.opencontainers.image.url": "https://git.***.net/***/studio",
2025-06-04T06:18:50.5671646Z     "org.opencontainers.image.version": "1.1.5"
2025-06-04T06:18:50.5671710Z   },
2025-06-04T06:18:50.5671765Z   "annotations": [
2025-06-04T06:18:50.5671820Z     "manifest:org.opencontainers.image.created=2025-06-04T06:18:50.435Z",
2025-06-04T06:18:50.5671879Z     "manifest:org.opencontainers.image.description=",
2025-06-04T06:18:50.5671933Z     "manifest:org.opencontainers.image.licenses=",
2025-06-04T06:18:50.5671986Z     "manifest:org.opencontainers.image.revision=ac9f68ab1e0010c5319b08ab9e9a33900980f579",
2025-06-04T06:18:50.5672045Z     "manifest:org.opencontainers.image.source=https://git.***.net/***/studio",
2025-06-04T06:18:50.5672115Z     "manifest:org.opencontainers.image.title=studio",
2025-06-04T06:18:50.5672187Z     "manifest:org.opencontainers.image.url=https://git.***.net/***/studio",
2025-06-04T06:18:50.5672265Z     "manifest:org.opencontainers.image.version=1.1.5"
2025-06-04T06:18:50.5672318Z   ]
2025-06-04T06:18:50.5672378Z }
2025-06-04T06:18:50.5672532Z ::endgroup::
2025-06-04T06:18:50.5674497Z ::group::Bake file definition (tags)
2025-06-04T06:18:50.5675173Z {
2025-06-04T06:18:50.5675230Z   "target": {
2025-06-04T06:18:50.5675306Z     "docker-metadata-action": {
2025-06-04T06:18:50.5675361Z       "tags": [
2025-06-04T06:18:50.5675489Z         "git.***.net/***/studio:1.1.5",
2025-06-04T06:18:50.5675594Z         "git.***.net/***/studio:1.1",
2025-06-04T06:18:50.5675681Z         "git.***.net/***/studio:latest"
2025-06-04T06:18:50.5675761Z       ],
2025-06-04T06:18:50.5675811Z       "args": {
2025-06-04T06:18:50.5675873Z         "DOCKER_META_IMAGES": "git.***.net/***/studio",
2025-06-04T06:18:50.5675936Z         "DOCKER_META_VERSION": "1.1.5"
2025-06-04T06:18:50.5676026Z       }
2025-06-04T06:18:50.5676077Z     }
2025-06-04T06:18:50.5676126Z   }
2025-06-04T06:18:50.5676404Z }
2025-06-04T06:18:50.5677455Z ::endgroup::
2025-06-04T06:18:50.5679338Z ::group::Bake file definition (labels)
2025-06-04T06:18:50.5679453Z {
2025-06-04T06:18:50.5679558Z   "target": {
2025-06-04T06:18:50.5679658Z     "docker-metadata-action": {
2025-06-04T06:18:50.5679720Z       "labels": {
2025-06-04T06:18:50.5679949Z         "org.opencontainers.image.created": "2025-06-04T06:18:50.435Z",
2025-06-04T06:18:50.5680025Z         "org.opencontainers.image.description": "",
2025-06-04T06:18:50.5680153Z         "org.opencontainers.image.licenses": "",
2025-06-04T06:18:50.5680215Z         "org.opencontainers.image.revision": "ac9f68ab1e0010c5319b08ab9e9a33900980f579",
2025-06-04T06:18:50.5680295Z         "org.opencontainers.image.source": "https://git.***.net/***/studio",
2025-06-04T06:18:50.5680367Z         "org.opencontainers.image.title": "studio",
2025-06-04T06:18:50.5680426Z         "org.opencontainers.image.url": "https://git.***.net/***/studio",
2025-06-04T06:18:50.5680503Z         "org.opencontainers.image.version": "1.1.5"
2025-06-04T06:18:50.5680559Z       }
2025-06-04T06:18:50.5680626Z     }
2025-06-04T06:18:50.5680677Z   }
2025-06-04T06:18:50.5680736Z }
2025-06-04T06:18:50.5681104Z ::endgroup::
2025-06-04T06:18:50.5682933Z ::group::Bake file definition (annotations)
2025-06-04T06:18:50.5683670Z {
2025-06-04T06:18:50.5683829Z   "target": {
2025-06-04T06:18:50.5684160Z     "docker-metadata-action": {
2025-06-04T06:18:50.5684293Z       "annotations": [
2025-06-04T06:18:50.5684458Z         "manifest:org.opencontainers.image.created=2025-06-04T06:18:50.435Z",
2025-06-04T06:18:50.5684608Z         "manifest:org.opencontainers.image.description=",
2025-06-04T06:18:50.5684714Z         "manifest:org.opencontainers.image.licenses=",
2025-06-04T06:18:50.5684890Z         "manifest:org.opencontainers.image.revision=ac9f68ab1e0010c5319b08ab9e9a33900980f579",
2025-06-04T06:18:50.5685011Z         "manifest:org.opencontainers.image.source=https://git.***.net/***/studio",
2025-06-04T06:18:50.5685354Z         "manifest:org.opencontainers.image.title=studio",
2025-06-04T06:18:50.5685580Z         "manifest:org.opencontainers.image.url=https://git.***.net/***/studio",
2025-06-04T06:18:50.5685763Z         "manifest:org.opencontainers.image.version=1.1.5"
2025-06-04T06:18:50.5685900Z       ]
2025-06-04T06:18:50.5686005Z     }
2025-06-04T06:18:50.5686157Z   }
2025-06-04T06:18:50.5686240Z }
2025-06-04T06:18:50.5686517Z ::endgroup::
2025-06-04T06:18:50.6748915Z + echo '{"tags":["git.***.net/***/studio:1.1.5","git.***.net/***/studio:1.1","git.***.net/***/studio:latest"],"labels":{"org.opencontainers.image.created":"2025-06-04T06:18:50.435Z","org.opencontainers.image.description":"","org.opencontainers.image.licenses":"","org.opencontainers.image.revision":"ac9f68ab1e0010c5319b08ab9e9a33900980f579","org.opencontainers.image.source":"https://git.***.net/***/studio","org.opencontainers.image.title":"studio","org.opencontainers.image.url":"https://git.***.net/***/studio","org.opencontainers.image.version":"1.1.5"},"annotations":["manifest:org.opencontainers.image.created=2025-06-04T06:18:50.435Z","manifest:org.opencontainers.image.description=","manifest:org.opencontainers.image.licenses=","manifest:org.opencontainers.image.revision=ac9f68ab1e0010c5319b08ab9e9a33900980f579","manifest:org.opencontainers.image.source=https://git.***.net/***/studio","manifest:org.opencontainers.image.title=studio","manifest:org.opencontainers.image.url=https://git.***.net/***/studio","manifest:org.opencontainers.image.version=1.1.5"]}'
2025-06-04T06:18:50.6749736Z + ls -al /tmp/digests
2025-06-04T06:18:50.6749938Z {"tags":["git.***.net/***/studio:1.1.5","git.***.net/***/studio:1.1","git.***.net/***/studio:latest"],"labels":{"org.opencontainers.image.created":"2025-06-04T06:18:50.435Z","org.opencontainers.image.description":"","org.opencontainers.image.licenses":"","org.opencontainers.image.revision":"ac9f68ab1e0010c5319b08ab9e9a33900980f579","org.opencontainers.image.source":"https://git.***.net/***/studio","org.opencontainers.image.title":"studio","org.opencontainers.image.url":"https://git.***.net/***/studio","org.opencontainers.image.version":"1.1.5"},"annotations":["manifest:org.opencontainers.image.created=2025-06-04T06:18:50.435Z","manifest:org.opencontainers.image.description=","manifest:org.opencontainers.image.licenses=","manifest:org.opencontainers.image.revision=ac9f68ab1e0010c5319b08ab9e9a33900980f579","manifest:org.opencontainers.image.source=https://git.***.net/***/studio","manifest:org.opencontainers.image.title=studio","manifest:org.opencontainers.image.url=https://git.***.net/***/studio","manifest:org.opencontainers.image.version=1.1.5"]}
2025-06-04T06:18:50.6764506Z total 8
2025-06-04T06:18:50.6764815Z drwxr-xr-x 2 root root 4096 Jun  4 06:18 .
2025-06-04T06:18:50.6764939Z drwxrwxrwt 1 root root 4096 Jun  4 06:18 ..
2025-06-04T06:18:50.6765046Z -rw-r--r-- 1 root root    0 Jun  4 06:18 4d5dfc2dec07b44939ffc9d7834a4a5f399d91d6f29a117c17d3864375f79cb6
2025-06-04T06:18:50.6765197Z -rw-r--r-- 1 root root    0 Jun  4 06:18 e2bea18c9cf78764342237371f45112ed9dd295c1efdca48217072d08af24cf5
2025-06-04T06:18:50.6767827Z ++ jq -cr '.tags | map("-t " + .) | join(" ")'
2025-06-04T06:18:50.8185759Z ++ printf 'git.***.net/***/studio@sha256:%s ' 4d5dfc2dec07b44939ffc9d7834a4a5f399d91d6f29a117c17d3864375f79cb6 e2bea18c9cf78764342237371f45112ed9dd295c1efdca48217072d08af24cf5
2025-06-04T06:18:50.8186172Z + docker buildx imagetools create -t git.***.net/***/studio:1.1.5 -t git.***.net/***/studio:1.1 -t git.***.net/***/studio:latest git.***.net/***/studio@sha256:4d5dfc2dec07b44939ffc9d7834a4a5f399d91d6f29a117c17d3864375f79cb6 git.***.net/***/studio@sha256:e2bea18c9cf78764342237371f45112ed9dd295c1efdca48217072d08af24cf5
2025-06-04T06:18:50.9338439Z #1 [internal] pushing git.***.net/***/studio:latest
2025-06-04T06:18:50.9728162Z #1 0.000 pushing sha256:378a4fbecd0e08127b23e0508053e0961f602c6cfa43a3cc2f25481b8c49841c to git.***.net/***/studio:latest
2025-06-04T06:18:50.9728705Z #1 ERROR: failed commit on ref "index-sha256:378a4fbecd0e08127b23e0508053e0961f602c6cfa43a3cc2f25481b8c49841c": unexpected status from PUT request to https://git.***.net/v2/***/studio/manifests/latest: 500 Internal Server Error
2025-06-04T06:18:50.9728902Z 
2025-06-04T06:18:50.9729022Z #2 [internal] pushing git.***.net/***/studio:1.1.5
2025-06-04T06:18:50.9729147Z #2 0.003 pushing sha256:378a4fbecd0e08127b23e0508053e0961f602c6cfa43a3cc2f25481b8c49841c to git.***.net/***/studio:1.1.5
2025-06-04T06:18:50.9729279Z #2 ERROR: failed commit on ref "index-sha256:378a4fbecd0e08127b23e0508053e0961f602c6cfa43a3cc2f25481b8c49841c": unexpected status from PUT request to https://git.***.net/v2/***/studio/manifests/1.1.5: 500 Internal Server Error
2025-06-04T06:18:50.9729426Z 
2025-06-04T06:18:50.9729534Z #3 [internal] pushing git.***.net/***/studio:1.1
2025-06-04T06:18:50.9729669Z #3 0.003 pushing sha256:378a4fbecd0e08127b23e0508053e0961f602c6cfa43a3cc2f25481b8c49841c to git.***.net/***/studio:1.1
2025-06-04T06:18:50.9729812Z #3 DONE 0.0s
2025-06-04T06:18:50.9729917Z ------
2025-06-04T06:18:50.9730013Z  > [internal] pushing git.***.net/***/studio:latest:
2025-06-04T06:18:50.9730127Z 0.000 pushing sha256:378a4fbecd0e08127b23e0508053e0961f602c6cfa43a3cc2f25481b8c49841c to git.***.net/***/studio:latest
2025-06-04T06:18:50.9730248Z ------
2025-06-04T06:18:50.9730353Z ------
2025-06-04T06:18:50.9730453Z  > [internal] pushing git.***.net/***/studio:1.1.5:
2025-06-04T06:18:50.9730560Z 0.003 pushing sha256:378a4fbecd0e08127b23e0508053e0961f602c6cfa43a3cc2f25481b8c49841c to git.***.net/***/studio:1.1.5
2025-06-04T06:18:50.9730793Z ------
2025-06-04T06:18:50.9730968Z ERROR: failed commit on ref "index-sha256:378a4fbecd0e08127b23e0508053e0961f602c6cfa43a3cc2f25481b8c49841c": unexpected status from PUT request to https://git.***.net/v2/***/studio/manifests/1.1.5: 500 Internal Server Error
2025-06-04T06:18:51.0153965Z evaluating expression 'always()'
2025-06-04T06:18:51.0154566Z expression 'always()' evaluated to 'true'
2025-06-04T06:18:51.0154731Z ⭐ Run Post Set up Docker Buildx
2025-06-04T06:18:51.0154940Z Writing entry to tarball workflow/outputcmd.txt len:0
2025-06-04T06:18:51.0155120Z Writing entry to tarball workflow/statecmd.txt len:0
2025-06-04T06:18:51.0155252Z Writing entry to tarball workflow/pathcmd.txt len:0
2025-06-04T06:18:51.0155388Z Writing entry to tarball workflow/envs.txt len:0
2025-06-04T06:18:51.0155500Z Writing entry to tarball workflow/SUMMARY.md len:0
2025-06-04T06:18:51.0155692Z Extracting content to '/var/run/act'
2025-06-04T06:18:51.0167114Z run post step for 'Set up Docker Buildx'
2025-06-04T06:18:51.0167784Z executing remote job container: [node /var/run/act/actions/6a647958c11e138a6cfcaf32d2b372bc8e0c97871d617bfb441d003d505b77cf/dist/index.js]
2025-06-04T06:18:51.0167981Z   🐳  docker exec cmd=[node /var/run/act/actions/6a647958c11e138a6cfcaf32d2b372bc8e0c97871d617bfb441d003d505b77cf/dist/index.js] user= workdir=
2025-06-04T06:18:51.0168131Z Exec command '[node /var/run/act/actions/6a647958c11e138a6cfcaf32d2b372bc8e0c97871d617bfb441d003d505b77cf/dist/index.js]'
2025-06-04T06:18:51.0168549Z Working directory '/workspace/***/studio'
2025-06-04T06:18:51.2419648Z ::group::Removing builder
2025-06-04T06:18:51.2420193Z ::group::Removing builder
2025-06-04T06:18:51.3420521Z [command]/usr/bin/docker buildx rm builder-64208f18-c951-4f46-86e8-545bad2c92c8
2025-06-04T06:18:51.6347030Z builder-64208f18-c951-4f46-86e8-545bad2c92c8 removed
2025-06-04T06:18:51.6373505Z ::endgroup::
2025-06-04T06:18:51.6373856Z ::endgroup::
2025-06-04T06:18:51.6374907Z ::group::Cleaning up certificates
2025-06-04T06:18:51.6375119Z ::group::Cleaning up certificates
2025-06-04T06:18:51.6377775Z ::endgroup::
2025-06-04T06:18:51.6377907Z ::endgroup::
2025-06-04T06:18:51.6378399Z ::group::Post cache
2025-06-04T06:18:51.6378517Z ::group::Post cache
2025-06-04T06:18:51.6379923Z State not set
2025-06-04T06:18:51.6380155Z ::endgroup::
2025-06-04T06:18:51.6380541Z ::endgroup::
2025-06-04T06:18:51.6441410Z   ✅  Success - Post Set up Docker Buildx
2025-06-04T06:18:51.6605048Z expression '${{ secrets.DOCKER_GITEA_TOKEN }}' rewritten to 'format('{0}', secrets.DOCKER_GITEA_TOKEN)'
2025-06-04T06:18:51.6605378Z evaluating expression 'format('{0}', secrets.DOCKER_GITEA_TOKEN)'
2025-06-04T06:18:51.6605771Z expression 'format('{0}', secrets.DOCKER_GITEA_TOKEN)' evaluated to '%!t(string=***)'
2025-06-04T06:18:51.6605988Z expression '${{ secrets.DOCKER_GITEA_USERNAME }}' rewritten to 'format('{0}', secrets.DOCKER_GITEA_USERNAME)'
2025-06-04T06:18:51.6606117Z evaluating expression 'format('{0}', secrets.DOCKER_GITEA_USERNAME)'
2025-06-04T06:18:51.6606336Z expression 'format('{0}', secrets.DOCKER_GITEA_USERNAME)' evaluated to '%!t(string=***)'
2025-06-04T06:18:51.6648038Z evaluating expression 'always()'
2025-06-04T06:18:51.6648485Z expression 'always()' evaluated to 'true'
2025-06-04T06:18:51.6648628Z ⭐ Run Post Log in to Gitea Docker Registry
2025-06-04T06:18:51.6648820Z Writing entry to tarball workflow/outputcmd.txt len:0
2025-06-04T06:18:51.6648998Z Writing entry to tarball workflow/statecmd.txt len:0
2025-06-04T06:18:51.6649124Z Writing entry to tarball workflow/pathcmd.txt len:0
2025-06-04T06:18:51.6649251Z Writing entry to tarball workflow/envs.txt len:0
2025-06-04T06:18:51.6649357Z Writing entry to tarball workflow/SUMMARY.md len:0
2025-06-04T06:18:51.6649478Z Extracting content to '/var/run/act'
2025-06-04T06:18:51.6664877Z run post step for 'Log in to Gitea Docker Registry'
2025-06-04T06:18:51.6665472Z executing remote job container: [node /var/run/act/actions/f4980c6ac598e909987ac91567f6966749e4ffb3917249bbe2a2399d45f65943/dist/index.js]
2025-06-04T06:18:51.6665640Z   🐳  docker exec cmd=[node /var/run/act/actions/f4980c6ac598e909987ac91567f6966749e4ffb3917249bbe2a2399d45f65943/dist/index.js] user= workdir=
2025-06-04T06:18:51.6665901Z Exec command '[node /var/run/act/actions/f4980c6ac598e909987ac91567f6966749e4ffb3917249bbe2a2399d45f65943/dist/index.js]'
2025-06-04T06:18:51.6666299Z Working directory '/workspace/***/studio'
2025-06-04T06:18:51.9559434Z [command]/usr/bin/docker logout git.***.net
2025-06-04T06:18:51.9663409Z Removing login credentials for git.***.net
2025-06-04T06:18:51.9686279Z ::group::Post cache
2025-06-04T06:18:51.9686649Z ::group::Post cache
2025-06-04T06:18:51.9686955Z State not set
2025-06-04T06:18:51.9687098Z ::endgroup::
2025-06-04T06:18:51.9687185Z ::endgroup::
2025-06-04T06:18:51.9743643Z   ✅  Success - Post Log in to Gitea Docker Registry
2025-06-04T06:18:51.9785205Z Cleaning up container for job merge
2025-06-04T06:18:52.1601829Z Removed container: e075aa3323d0d152cb7e22a9ed3661e2cccc67c80bb5a87cde865837e070c92c
2025-06-04T06:18:52.1610735Z   🐳  docker volume rm GITEA-ACTIONS-TASK-1539_WORKFLOW-ci_JOB-merge
2025-06-04T06:18:52.1648537Z   🐳  docker volume rm GITEA-ACTIONS-TASK-1539_WORKFLOW-ci_JOB-merge-env
2025-06-04T06:18:52.2157492Z Cleaning up network for job merge, and network name is: GITEA-ACTIONS-TASK-1539_WORKFLOW-ci_JOB-merge-merge-network
2025-06-04T06:18:52.4563165Z 🏁  Job failed
2025-06-04T06:18:52.4611900Z Job 'merge' failed
Image

Gitea Server logs

gitea      | 2025/06/19 14:56:25 .../container/manifest.go:453:createManifestBlob() [E] Error inserting package blob: Error 1062 (23000): Duplicate entry '16bbe4808962584fbed390f04feec4ba' for key 'package_blob.UQE_package_blob_md5'
gitea      | 2025/06/19 14:56:25 .../container/container.go:93:apiError() [E] Error 1062 (23000): Duplicate entry '16bbe4808962584fbed390f04feec4ba' for key 'package_blob.UQE_package_blob_md5'

when i retry the merge section, it success.

Gitea Version

1.24.0

Can you reproduce the bug on the Gitea demo site?

Yes

Log Gist

No response

Screenshots

No response

Git Version

No response

Operating System

No response

How are you running Gitea?

self host

Database

None

Originally created by @duguying on GitHub (Jun 19, 2025). ### Description release.yaml ```yaml name: ci on: push: tags: - '*' env: GITEA_REPO: git.duguying.net/duguying/studio jobs: build: runs-on: ${{ matrix.platform }} strategy: fail-fast: false matrix: platform: - linux/amd64 - linux/arm64 steps: - name: Checkout Repo uses: actions/checkout@v4 - name: Prepare run: | platform=${{ matrix.platform }} echo "PLATFORM_PAIR=${platform//\//-}" >> $GITHUB_ENV - name: Docker meta id: meta uses: docker/metadata-action@v5 with: images: | ${{ env.GITEA_REPO }} - name: Log in to Gitea Docker Registry uses: docker/login-action@v3 with: registry: git.duguying.net username: ${{ secrets.DOCKER_GITEA_USERNAME }} password: ${{ secrets.DOCKER_GITEA_TOKEN }} - name: Set up QEMU uses: docker/setup-qemu-action@v3 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 - name: Build and push by digest id: build uses: docker/build-push-action@v6 with: context: . file: Dockerfile push: true platforms: ${{ matrix.platform }} labels: ${{ steps.meta.outputs.labels }} outputs: type=image,"name=${{ env.GITEA_REPO }}",push-by-digest=true,name-canonical=true,push=true - name: Export digest run: | set -x #echo on mkdir -p /tmp/digests digest="${{ steps.build.outputs.digest }}" touch "/tmp/digests/${digest#sha256:}" - name: Upload digest uses: actions/upload-artifact@v3 with: name: digests-${{ env.PLATFORM_PAIR }} path: /tmp/digests/* if-no-files-found: error retention-days: 1 merge: runs-on: ubuntu-latest needs: - build steps: - name: Download digests uses: actions/download-artifact@v3 with: path: /tmp/digests pattern: digests-* merge-multiple: true - name: Organize digests run: | set -x #echo on mv /tmp/digests/*/* /tmp/digests rm -rf /tmp/digests/digests-* ls -al /tmp/digests - name: Log in to Gitea Docker Registry uses: docker/login-action@v3 with: registry: git.duguying.net username: ${{ secrets.DOCKER_GITEA_USERNAME }} password: ${{ secrets.DOCKER_GITEA_TOKEN }} - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 - name: Docker meta id: meta uses: docker/metadata-action@v5 with: images: | ${{ env.GITEA_REPO }} tags: | type=ref,event=branch type=ref,event=pr type=semver,pattern={{version}} type=semver,pattern={{major}}.{{minor}} - name: Create manifest list and push working-directory: /tmp/digests run: | set -x #echo on echo "$DOCKER_METADATA_OUTPUT_JSON" ls -al /tmp/digests docker buildx imagetools create $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \ $(printf '${{ env.GITEA_REPO }}@sha256:%s ' *) - name: Inspect image run: | docker buildx imagetools inspect ${{ env.GITEA_REPO }}:${{ steps.meta.outputs.version }} ``` log ```log 2025-06-04T06:18:23.2255436Z gitea_sz_runner_1(version:v0.2.11) received task 1539 of job 1418, be triggered by event: push 2025-06-04T06:18:23.2371220Z workflow prepared 2025-06-04T06:18:23.2371813Z evaluating expression 'success()' 2025-06-04T06:18:23.2382676Z expression 'success()' evaluated to 'true' 2025-06-04T06:18:23.2382832Z 'runs-on' key not defined in ci/build 2025-06-04T06:18:23.2382924Z No steps found 2025-06-04T06:18:23.2383752Z evaluating expression 'success()' 2025-06-04T06:18:23.2384161Z expression 'success()' evaluated to 'true' 2025-06-04T06:18:23.2384334Z 🚀 Start image=gitea/runner-images:ubuntu-latest 2025-06-04T06:18:23.2459015Z 🐳 docker pull image=gitea/runner-images:ubuntu-latest platform= username= forcePull=false 2025-06-04T06:18:23.2459290Z 🐳 docker pull gitea/runner-images:ubuntu-latest 2025-06-04T06:18:23.2565201Z Image exists? true 2025-06-04T06:18:23.2605888Z Cleaning up network for job merge, and network name is: GITEA-ACTIONS-TASK-1539_WORKFLOW-ci_JOB-merge-merge-network 2025-06-04T06:18:23.3090071Z 🐳 docker create image=gitea/runner-images:ubuntu-latest platform= entrypoint=["/bin/sleep" "18000"] cmd=[] network="GITEA-ACTIONS-TASK-1539_WORKFLOW-ci_JOB-merge-merge-network" 2025-06-04T06:18:23.3939964Z Created container name=GITEA-ACTIONS-TASK-1539_WORKFLOW-ci_JOB-merge id=e075aa3323d0d152cb7e22a9ed3661e2cccc67c80bb5a87cde865837e070c92c from image gitea/runner-images:ubuntu-latest (platform: ) 2025-06-04T06:18:23.3941212Z ENV ==> [RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_ARCH=X64 RUNNER_TEMP=/tmp LANG=C.UTF-8] 2025-06-04T06:18:23.3941594Z 🐳 docker run image=gitea/runner-images:ubuntu-latest platform= entrypoint=["/bin/sleep" "18000"] cmd=[] network="GITEA-ACTIONS-TASK-1539_WORKFLOW-ci_JOB-merge-merge-network" 2025-06-04T06:18:23.3941867Z Starting container: e075aa3323d0d152cb7e22a9ed3661e2cccc67c80bb5a87cde865837e070c92c 2025-06-04T06:18:23.6193620Z Started container: e075aa3323d0d152cb7e22a9ed3661e2cccc67c80bb5a87cde865837e070c92c 2025-06-04T06:18:23.7370015Z Writing entry to tarball workflow/event.json len:4188 2025-06-04T06:18:23.7370937Z Writing entry to tarball workflow/envs.txt len:0 2025-06-04T06:18:23.7371206Z Extracting content to '/var/run/act/' 2025-06-04T06:18:23.7504907Z ☁ git clone 'https://github.com/actions/download-artifact' # ref=v3 2025-06-04T06:18:23.7505166Z cloning https://github.com/actions/download-artifact to /root/.cache/act/97775bd2c13e122852504b69e1b0c39c28550283125cd4f3cde608926c13f996 2025-06-04T06:18:25.2394424Z Unable to pull refs/heads/v3: worktree contains unstaged changes 2025-06-04T06:18:25.2394795Z Cloned https://github.com/actions/download-artifact to /root/.cache/act/97775bd2c13e122852504b69e1b0c39c28550283125cd4f3cde608926c13f996 2025-06-04T06:18:25.2496699Z Checked out v3 2025-06-04T06:18:25.2564953Z ☁ git clone 'https://github.com/docker/login-action' # ref=v3 2025-06-04T06:18:25.2565347Z cloning https://github.com/docker/login-action to /root/.cache/act/f4980c6ac598e909987ac91567f6966749e4ffb3917249bbe2a2399d45f65943 2025-06-04T06:18:27.6011780Z Unable to pull refs/heads/v3: worktree contains unstaged changes 2025-06-04T06:18:27.6012174Z Cloned https://github.com/docker/login-action to /root/.cache/act/f4980c6ac598e909987ac91567f6966749e4ffb3917249bbe2a2399d45f65943 2025-06-04T06:18:27.6906061Z Checked out v3 2025-06-04T06:18:27.6961776Z ☁ git clone 'https://github.com/docker/setup-buildx-action' # ref=v3 2025-06-04T06:18:27.6962073Z cloning https://github.com/docker/setup-buildx-action to /root/.cache/act/6a647958c11e138a6cfcaf32d2b372bc8e0c97871d617bfb441d003d505b77cf 2025-06-04T06:18:29.1023661Z Unable to pull refs/heads/v3: worktree contains unstaged changes 2025-06-04T06:18:29.1024137Z Cloned https://github.com/docker/setup-buildx-action to /root/.cache/act/6a647958c11e138a6cfcaf32d2b372bc8e0c97871d617bfb441d003d505b77cf 2025-06-04T06:18:29.2032581Z Checked out v3 2025-06-04T06:18:29.2087663Z ☁ git clone 'https://github.com/docker/metadata-action' # ref=v5 2025-06-04T06:18:29.2088037Z cloning https://github.com/docker/metadata-action to /root/.cache/act/bcd26377c6fbfb33a804ad7d884c58b832133e558f518b09111bfd2c3b68d901 2025-06-04T06:18:31.0754322Z Unable to pull refs/heads/v5: worktree contains unstaged changes 2025-06-04T06:18:31.0754847Z Cloned https://github.com/docker/metadata-action to /root/.cache/act/bcd26377c6fbfb33a804ad7d884c58b832133e558f518b09111bfd2c3b68d901 2025-06-04T06:18:31.1852841Z Checked out v5 2025-06-04T06:18:31.2031974Z evaluating expression '' 2025-06-04T06:18:31.2032576Z expression '' evaluated to 'true' 2025-06-04T06:18:31.2032767Z ⭐ Run Main Download digests 2025-06-04T06:18:31.2033021Z Writing entry to tarball workflow/outputcmd.txt len:0 2025-06-04T06:18:31.2033206Z Writing entry to tarball workflow/statecmd.txt len:0 2025-06-04T06:18:31.2033344Z Writing entry to tarball workflow/pathcmd.txt len:0 2025-06-04T06:18:31.2033469Z Writing entry to tarball workflow/envs.txt len:0 2025-06-04T06:18:31.2033572Z Writing entry to tarball workflow/SUMMARY.md len:0 2025-06-04T06:18:31.2033731Z Extracting content to '/var/run/act' 2025-06-04T06:18:31.2091688Z type=remote-action actionDir=/root/.cache/act/97775bd2c13e122852504b69e1b0c39c28550283125cd4f3cde608926c13f996 actionPath= workdir=/workspace/***/studio actionCacheDir=/root/.cache/act actionName=97775bd2c13e122852504b69e1b0c39c28550283125cd4f3cde608926c13f996 containerActionDir=/var/run/act/actions/97775bd2c13e122852504b69e1b0c39c28550283125cd4f3cde608926c13f996 2025-06-04T06:18:31.2092013Z /var/run/act/actions/97775bd2c13e122852504b69e1b0c39c28550283125cd4f3cde608926c13f996 2025-06-04T06:18:31.2092247Z Removing /root/.cache/act/97775bd2c13e122852504b69e1b0c39c28550283125cd4f3cde608926c13f996/.gitignore before docker cp 2025-06-04T06:18:31.2092860Z 🐳 docker cp src=/root/.cache/act/97775bd2c13e122852504b69e1b0c39c28550283125cd4f3cde608926c13f996/ dst=/var/run/act/actions/97775bd2c13e122852504b69e1b0c39c28550283125cd4f3cde608926c13f996/ 2025-06-04T06:18:31.2103130Z Writing tarball /tmp/act2319377334 from /root/.cache/act/97775bd2c13e122852504b69e1b0c39c28550283125cd4f3cde608926c13f996/ 2025-06-04T06:18:31.2103318Z Stripping prefix:/root/.cache/act/97775bd2c13e122852504b69e1b0c39c28550283125cd4f3cde608926c13f996/ src:/root/.cache/act/97775bd2c13e122852504b69e1b0c39c28550283125cd4f3cde608926c13f996/ 2025-06-04T06:18:31.3572175Z Extracting content from '/tmp/act2319377334' to '/var/run/act/actions/97775bd2c13e122852504b69e1b0c39c28550283125cd4f3cde608926c13f996/' 2025-06-04T06:18:31.3873579Z executing remote job container: [node /var/run/act/actions/97775bd2c13e122852504b69e1b0c39c28550283125cd4f3cde608926c13f996/dist/index.js] 2025-06-04T06:18:31.3874004Z 🐳 docker exec cmd=[node /var/run/act/actions/97775bd2c13e122852504b69e1b0c39c28550283125cd4f3cde608926c13f996/dist/index.js] user= workdir= 2025-06-04T06:18:31.3874114Z Exec command '[node /var/run/act/actions/97775bd2c13e122852504b69e1b0c39c28550283125cd4f3cde608926c13f996/dist/index.js]' 2025-06-04T06:18:31.3874348Z Working directory '/workspace/***/studio' 2025-06-04T06:18:31.4790636Z No artifact name specified, downloading all artifacts 2025-06-04T06:18:31.4790755Z Creating an extra directory for each artifact that is being downloaded 2025-06-04T06:18:31.5610314Z starting download of artifact digests-linux-amd64 : 1/2 2025-06-04T06:18:31.5685685Z Total number of files that will be downloaded: 1 2025-06-04T06:18:31.5750129Z Skipping download validation. 2025-06-04T06:18:31.5751488Z starting download of artifact digests-linux-arm64 : 2/2 2025-06-04T06:18:31.5823852Z Total number of files that will be downloaded: 1 2025-06-04T06:18:31.5899197Z Skipping download validation. 2025-06-04T06:18:31.5899981Z There were 2 artifacts downloaded 2025-06-04T06:18:31.5900052Z Artifact digests-linux-amd64 was downloaded to /tmp/digests/digests-linux-amd64 2025-06-04T06:18:31.5900137Z Artifact digests-linux-arm64 was downloaded to /tmp/digests/digests-linux-arm64 2025-06-04T06:18:31.5912724Z Artifact download has finished successfully 2025-06-04T06:18:31.7363112Z + mv /tmp/digests/digests-linux-amd64/4d5dfc2dec07b44939ffc9d7834a4a5f399d91d6f29a117c17d3864375f79cb6 /tmp/digests/digests-linux-arm64/e2bea18c9cf78764342237371f45112ed9dd295c1efdca48217072d08af24cf5 /tmp/digests 2025-06-04T06:18:31.7508709Z + rm -rf /tmp/digests/digests-linux-amd64 /tmp/digests/digests-linux-arm64 2025-06-04T06:18:31.7539498Z + ls -al /tmp/digests 2025-06-04T06:18:31.7592451Z total 8 2025-06-04T06:18:31.7592604Z drwxr-xr-x 2 root root 4096 Jun 4 06:18 . 2025-06-04T06:18:31.7592729Z drwxrwxrwt 1 root root 4096 Jun 4 06:18 .. 2025-06-04T06:18:31.7592799Z -rw-r--r-- 1 root root 0 Jun 4 06:18 4d5dfc2dec07b44939ffc9d7834a4a5f399d91d6f29a117c17d3864375f79cb6 2025-06-04T06:18:31.7592906Z -rw-r--r-- 1 root root 0 Jun 4 06:18 e2bea18c9cf78764342237371f45112ed9dd295c1efdca48217072d08af24cf5 2025-06-04T06:18:34.4482551Z Logging into git.***.net... 2025-06-04T06:18:34.7363893Z Login Succeeded! 2025-06-04T06:18:36.7046940Z ::group::Docker info 2025-06-04T06:18:36.7072390Z [command]/usr/bin/docker version 2025-06-04T06:18:36.7296678Z Client: 2025-06-04T06:18:36.7298756Z Version: 27.5.1-1 2025-06-04T06:18:36.7298959Z API version: 1.47 2025-06-04T06:18:36.7299069Z Go version: go1.22.11 2025-06-04T06:18:36.7299188Z Git commit: 9f9e4058019a37304dc6572ffcbb409d529b59d8 2025-06-04T06:18:36.7299319Z Built: Tue Jan 21 23:46:20 UTC 2025 2025-06-04T06:18:36.7299423Z OS/Arch: linux/amd64 2025-06-04T06:18:36.7299519Z Context: default 2025-06-04T06:18:36.7299623Z 2025-06-04T06:18:36.7299728Z Server: Docker Engine - Community 2025-06-04T06:18:36.7299824Z Engine: 2025-06-04T06:18:36.7299931Z Version: 28.0.1 2025-06-04T06:18:36.7300057Z API version: 1.48 (minimum version 1.24) 2025-06-04T06:18:36.7300154Z Go version: go1.23.6 2025-06-04T06:18:36.7300248Z Git commit: bbd0a17 2025-06-04T06:18:36.7300351Z Built: Wed Feb 26 10:41:16 2025 2025-06-04T06:18:36.7300453Z OS/Arch: linux/amd64 2025-06-04T06:18:36.7300584Z Experimental: false 2025-06-04T06:18:36.7300686Z containerd: 2025-06-04T06:18:36.7300790Z Version: 1.7.25 2025-06-04T06:18:36.7300892Z GitCommit: bcc810d6b9066471b0b6fa75f557a15a1cbf31bb 2025-06-04T06:18:36.7301015Z runc: 2025-06-04T06:18:36.7301137Z Version: 1.2.4 2025-06-04T06:18:36.7301237Z GitCommit: v1.2.4-0-g6c52b3f 2025-06-04T06:18:36.7301332Z docker-init: 2025-06-04T06:18:36.7301422Z Version: 0.19.0 2025-06-04T06:18:36.7301523Z GitCommit: de40ad0 2025-06-04T06:18:36.7327610Z [command]/usr/bin/docker info 2025-06-04T06:18:43.2246646Z Client: 2025-06-04T06:18:43.2246939Z Version: 27.5.1-1 2025-06-04T06:18:43.2247100Z Context: default 2025-06-04T06:18:43.2247172Z Debug Mode: false 2025-06-04T06:18:43.2247242Z Plugins: 2025-06-04T06:18:43.2247311Z buildx: Docker Buildx (Docker Inc.) 2025-06-04T06:18:43.2247384Z Version: 0.21.1-1 2025-06-04T06:18:43.2247444Z Path: /usr/libexec/docker/cli-plugins/docker-buildx 2025-06-04T06:18:43.2247508Z compose: Docker Compose (Docker Inc.) 2025-06-04T06:18:43.2247579Z Version: 2.33.1-1 2025-06-04T06:18:43.2247633Z Path: /usr/libexec/docker/cli-plugins/docker-compose 2025-06-04T06:18:43.2247705Z 2025-06-04T06:18:43.2247756Z Server: 2025-06-04T06:18:43.2247822Z Containers: 2 2025-06-04T06:18:43.2247877Z Running: 2 2025-06-04T06:18:43.2247931Z Paused: 0 2025-06-04T06:18:43.2248023Z Stopped: 0 2025-06-04T06:18:43.2248080Z Images: 10 2025-06-04T06:18:43.2248142Z Server Version: 28.0.1 2025-06-04T06:18:43.2248212Z Storage Driver: overlay2 2025-06-04T06:18:43.2248283Z Backing Filesystem: extfs 2025-06-04T06:18:43.2248338Z Supports d_type: true 2025-06-04T06:18:43.2248389Z Using metacopy: false 2025-06-04T06:18:43.2248449Z Native Overlay Diff: true 2025-06-04T06:18:43.2248501Z userxattr: false 2025-06-04T06:18:43.2248567Z Logging Driver: json-file 2025-06-04T06:18:43.2248620Z Cgroup Driver: systemd 2025-06-04T06:18:43.2248680Z Cgroup Version: 2 2025-06-04T06:18:43.2248731Z Plugins: 2025-06-04T06:18:43.2248791Z Volume: local 2025-06-04T06:18:43.2248872Z Network: bridge host ipvlan macvlan null overlay 2025-06-04T06:18:43.2248935Z Log: awslogs fluentd gcplogs gelf journald json-file local splunk syslog 2025-06-04T06:18:43.2249017Z Swarm: inactive 2025-06-04T06:18:43.2249076Z Runtimes: io.containerd.runc.v2 runc 2025-06-04T06:18:43.2249141Z Default Runtime: runc 2025-06-04T06:18:43.2249192Z Init Binary: docker-init 2025-06-04T06:18:43.2249242Z containerd version: bcc810d6b9066471b0b6fa75f557a15a1cbf31bb 2025-06-04T06:18:43.2249316Z runc version: v1.2.4-0-g6c52b3f 2025-06-04T06:18:43.2249368Z init version: de40ad0 2025-06-04T06:18:43.2249435Z Security Options: 2025-06-04T06:18:43.2249485Z apparmor 2025-06-04T06:18:43.2249546Z seccomp 2025-06-04T06:18:43.2249594Z Profile: builtin 2025-06-04T06:18:43.2249645Z cgroupns 2025-06-04T06:18:43.2249712Z Kernel Version: 6.1.0-31-amd64 2025-06-04T06:18:43.2249765Z Operating System: Debian GNU/Linux 12 (bookworm) 2025-06-04T06:18:43.2249828Z OSType: linux 2025-06-04T06:18:43.2249885Z Architecture: x86_64 2025-06-04T06:18:43.2249950Z CPUs: 8 2025-06-04T06:18:43.2250001Z Total Memory: 3.822GiB 2025-06-04T06:18:43.2250054Z Name: debian-runner 2025-06-04T06:18:43.2250117Z ID: 3f6011f6-93a7-4121-9ab1-dad88241b243 2025-06-04T06:18:43.2250169Z Docker Root Dir: /var/lib/docker 2025-06-04T06:18:43.2250232Z Debug Mode: false 2025-06-04T06:18:43.2250282Z Experimental: false 2025-06-04T06:18:43.2250341Z Insecure Registries: 2025-06-04T06:18:43.2250471Z ::1/128 2025-06-04T06:18:43.2250527Z 127.0.0.0/8 2025-06-04T06:18:43.2250596Z Live Restore Enabled: false 2025-06-04T06:18:43.2250649Z 2025-06-04T06:18:43.2261546Z ::endgroup:: 2025-06-04T06:18:43.2953995Z ::group::Buildx version 2025-06-04T06:18:43.2997901Z [command]/usr/bin/docker buildx version 2025-06-04T06:18:43.3571074Z github.com/docker/buildx 0.21.1-1 7c2359c6bf8b3331413c0fe95918fe1cfe9aa127 2025-06-04T06:18:43.3595320Z ::endgroup:: 2025-06-04T06:18:43.3735815Z ::group::Inspecting default docker context 2025-06-04T06:18:43.3880875Z [ 2025-06-04T06:18:43.3881247Z { 2025-06-04T06:18:43.3881344Z "Name": "default", 2025-06-04T06:18:43.3881424Z "Metadata": {}, 2025-06-04T06:18:43.3881497Z "Endpoints": { 2025-06-04T06:18:43.3881556Z "docker": { 2025-06-04T06:18:43.3881639Z "Host": "unix:///var/run/docker.sock", 2025-06-04T06:18:43.3881708Z "SkipTLSVerify": false 2025-06-04T06:18:43.3881765Z } 2025-06-04T06:18:43.3881825Z }, 2025-06-04T06:18:43.3881878Z "TLSMaterial": {}, 2025-06-04T06:18:43.3881938Z "Storage": { 2025-06-04T06:18:43.3881989Z "MetadataPath": "<IN MEMORY>", 2025-06-04T06:18:43.3882061Z "TLSPath": "<IN MEMORY>" 2025-06-04T06:18:43.3882132Z } 2025-06-04T06:18:43.3882186Z } 2025-06-04T06:18:43.3882235Z ] 2025-06-04T06:18:43.3882385Z ::endgroup:: 2025-06-04T06:18:43.3882546Z ::group::Creating a new builder instance 2025-06-04T06:18:43.4451402Z [command]/usr/bin/docker buildx create --name builder-64208f18-c951-4f46-86e8-545bad2c92c8 --driver docker-container --buildkitd-flags --allow-insecure-entitlement security.insecure --allow-insecure-entitlement network.host --use 2025-06-04T06:18:43.4933732Z builder-64208f18-c951-4f46-86e8-545bad2c92c8 2025-06-04T06:18:43.4960439Z ::endgroup:: 2025-06-04T06:18:43.4960794Z ::group::Booting builder 2025-06-04T06:18:43.4985143Z [command]/usr/bin/docker buildx inspect --bootstrap --builder builder-64208f18-c951-4f46-86e8-545bad2c92c8 2025-06-04T06:18:43.5403827Z #1 [internal] booting buildkit 2025-06-04T06:18:43.6914403Z #1 pulling image moby/buildkit:buildx-stable-1 2025-06-04T06:18:47.4412694Z #1 pulling image moby/buildkit:buildx-stable-1 3.9s done 2025-06-04T06:18:47.4413097Z #1 creating container buildx_buildkit_builder-64208f18-c951-4f46-86e8-545bad2c92c80 2025-06-04T06:18:48.3633360Z #1 creating container buildx_buildkit_builder-64208f18-c951-4f46-86e8-545bad2c92c80 0.9s done 2025-06-04T06:18:48.3655821Z #1 DONE 4.8s 2025-06-04T06:18:48.4198243Z Name: builder-64208f18-c951-4f46-86e8-545bad2c92c8 2025-06-04T06:18:48.4198629Z Driver: docker-container 2025-06-04T06:18:48.4198770Z Last Activity: 2025-06-04 06:18:43 +0000 UTC 2025-06-04T06:18:48.4198935Z 2025-06-04T06:18:48.4199039Z Nodes: 2025-06-04T06:18:48.4199167Z Name: builder-64208f18-c951-4f46-86e8-545bad2c92c80 2025-06-04T06:18:48.4199293Z Endpoint: unix:///var/run/docker.sock 2025-06-04T06:18:48.4199406Z Status: running 2025-06-04T06:18:48.4199632Z BuildKit daemon flags: --allow-insecure-entitlement security.insecure --allow-insecure-entitlement network.host 2025-06-04T06:18:48.4199806Z BuildKit version: v0.21.1 2025-06-04T06:18:48.4200018Z Platforms: linux/amd64, linux/amd64/v2, linux/amd64/v3, linux/arm64, linux/riscv64, linux/ppc64le, linux/s390x, linux/386, linux/mips64le, linux/mips64, linux/loong64, linux/arm/v7, linux/arm/v6 2025-06-04T06:18:48.4200195Z Labels: 2025-06-04T06:18:48.4200305Z org.mobyproject.buildkit.worker.executor: oci 2025-06-04T06:18:48.4200414Z org.mobyproject.buildkit.worker.hostname: 76bfc56d2ef7 2025-06-04T06:18:48.4200521Z org.mobyproject.buildkit.worker.network: host 2025-06-04T06:18:48.4200622Z org.mobyproject.buildkit.worker.oci.process-mode: sandbox 2025-06-04T06:18:48.4200726Z org.mobyproject.buildkit.worker.selinux.enabled: false 2025-06-04T06:18:48.4200850Z org.mobyproject.buildkit.worker.snapshotter: overlayfs 2025-06-04T06:18:48.4200951Z GC Policy rule#0: 2025-06-04T06:18:48.4201044Z All: false 2025-06-04T06:18:48.4201138Z Filters: type==source.local,type==exec.cachemount,type==source.git.checkout 2025-06-04T06:18:48.4201255Z Keep Duration: 48h0m0s 2025-06-04T06:18:48.4201370Z Max Used Space: 488.3MiB 2025-06-04T06:18:48.4201472Z GC Policy rule#1: 2025-06-04T06:18:48.4201565Z All: false 2025-06-04T06:18:48.4201656Z Keep Duration: 1440h0m0s 2025-06-04T06:18:48.4201751Z Reserved Space: 9.313GiB 2025-06-04T06:18:48.4201844Z Max Used Space: 72.64GiB 2025-06-04T06:18:48.4201933Z Min Free Space: 18.63GiB 2025-06-04T06:18:48.4202022Z GC Policy rule#2: 2025-06-04T06:18:48.4202111Z All: false 2025-06-04T06:18:48.4202206Z Reserved Space: 9.313GiB 2025-06-04T06:18:48.4202308Z Max Used Space: 72.64GiB 2025-06-04T06:18:48.4202398Z Min Free Space: 18.63GiB 2025-06-04T06:18:48.4202486Z GC Policy rule#3: 2025-06-04T06:18:48.4202570Z All: true 2025-06-04T06:18:48.4202667Z Reserved Space: 9.313GiB 2025-06-04T06:18:48.4202754Z Max Used Space: 72.64GiB 2025-06-04T06:18:48.4202841Z Min Free Space: 18.63GiB 2025-06-04T06:18:48.4230940Z ::endgroup:: 2025-06-04T06:18:48.5218880Z ::group::Inspect builder 2025-06-04T06:18:48.5219310Z { 2025-06-04T06:18:48.5219451Z "nodes": [ 2025-06-04T06:18:48.5219572Z { 2025-06-04T06:18:48.5219712Z "name": "builder-64208f18-c951-4f46-86e8-545bad2c92c80", 2025-06-04T06:18:48.5219875Z "endpoint": "unix:///var/run/docker.sock", 2025-06-04T06:18:48.5220017Z "status": "running", 2025-06-04T06:18:48.5220132Z "buildkitd-flags": "--allow-insecure-entitlement security.insecure --allow-insecure-entitlement network.host", 2025-06-04T06:18:48.5220306Z "buildkit": "v0.21.1", 2025-06-04T06:18:48.5220440Z "platforms": "linux/amd64,linux/amd64/v2,linux/amd64/v3,linux/arm64,linux/riscv64,linux/ppc64le,linux/s390x,linux/386,linux/mips64le,linux/mips64,linux/loong64,linux/arm/v7,linux/arm/v6", 2025-06-04T06:18:48.5220613Z "features": { 2025-06-04T06:18:48.5220732Z "Automatically load images to the Docker Engine image store": true, 2025-06-04T06:18:48.5220880Z "Cache export": true, 2025-06-04T06:18:48.5220993Z "Docker exporter": true, 2025-06-04T06:18:48.5221112Z "Multi-platform build": true, 2025-06-04T06:18:48.5221203Z "OCI exporter": true 2025-06-04T06:18:48.5221281Z }, 2025-06-04T06:18:48.5221356Z "labels": { 2025-06-04T06:18:48.5221432Z "org.mobyproject.buildkit.worker.executor": "oci", 2025-06-04T06:18:48.5221514Z "org.mobyproject.buildkit.worker.hostname": "76bfc56d2ef7", 2025-06-04T06:18:48.5221598Z "org.mobyproject.buildkit.worker.network": "host", 2025-06-04T06:18:48.5221681Z "org.mobyproject.buildkit.worker.oci.process-mode": "sandbox", 2025-06-04T06:18:48.5221768Z "org.mobyproject.buildkit.worker.selinux.enabled": "false", 2025-06-04T06:18:48.5221849Z "org.mobyproject.buildkit.worker.snapshotter": "overlayfs" 2025-06-04T06:18:48.5221987Z }, 2025-06-04T06:18:48.5222120Z "gcPolicy": [ 2025-06-04T06:18:48.5222202Z { 2025-06-04T06:18:48.5222273Z "all": false, 2025-06-04T06:18:48.5222344Z "filter": [ 2025-06-04T06:18:48.5222424Z "type==source.local", 2025-06-04T06:18:48.5222504Z "type==exec.cachemount", 2025-06-04T06:18:48.5222576Z "type==source.git.checkout" 2025-06-04T06:18:48.5222651Z ], 2025-06-04T06:18:48.5222737Z "keepDuration": "48h0m0s" 2025-06-04T06:18:48.5222807Z }, 2025-06-04T06:18:48.5222885Z { 2025-06-04T06:18:48.5222952Z "all": false, 2025-06-04T06:18:48.5223023Z "keepDuration": "1440h0m0s" 2025-06-04T06:18:48.5223093Z }, 2025-06-04T06:18:48.5223176Z { 2025-06-04T06:18:48.5223280Z "all": false 2025-06-04T06:18:48.5223365Z }, 2025-06-04T06:18:48.5223436Z { 2025-06-04T06:18:48.5223502Z "all": true 2025-06-04T06:18:48.5223574Z } 2025-06-04T06:18:48.5223639Z ] 2025-06-04T06:18:48.5223711Z } 2025-06-04T06:18:48.5223774Z ], 2025-06-04T06:18:48.5223842Z "name": "builder-64208f18-c951-4f46-86e8-545bad2c92c8", 2025-06-04T06:18:48.5223935Z "driver": "docker-container", 2025-06-04T06:18:48.5224007Z "lastActivity": "2025-06-04T06:18:43.000Z" 2025-06-04T06:18:48.5224079Z } 2025-06-04T06:18:48.5225781Z ::endgroup:: 2025-06-04T06:18:48.5226355Z ::group::BuildKit version 2025-06-04T06:18:48.5227710Z builder-64208f18-c951-4f46-86e8-545bad2c92c80: v0.21.1 2025-06-04T06:18:48.5228181Z ::endgroup:: 2025-06-04T06:18:50.3530482Z ::group::Context info 2025-06-04T06:18:50.3530763Z eventName: push 2025-06-04T06:18:50.3530878Z sha: ac9f68ab1e0010c5319b08ab9e9a33900980f579 2025-06-04T06:18:50.3531020Z ref: refs/tags/v1.1.5 2025-06-04T06:18:50.3531141Z workflow: ci 2025-06-04T06:18:50.3531291Z action: meta 2025-06-04T06:18:50.3531382Z actor: *** 2025-06-04T06:18:50.3531523Z runNumber: 204 2025-06-04T06:18:50.3531647Z runId: 1136 2025-06-04T06:18:50.4336575Z commitDate: Wed Jun 04 2025 05:36:57 GMT+0000 (Coordinated Universal Time) 2025-06-04T06:18:50.4337054Z ::endgroup:: 2025-06-04T06:18:50.4341808Z ::group::Processing images input 2025-06-04T06:18:50.4341886Z name=git.***.net/***/studio,enable=true 2025-06-04T06:18:50.4342042Z ::endgroup:: 2025-06-04T06:18:50.4353877Z ::group::Processing tags input 2025-06-04T06:18:50.4353982Z type=semver,pattern={{version}},value=,enable=true,priority=900 2025-06-04T06:18:50.4354059Z type=semver,pattern={{major}}.{{minor}},value=,enable=true,priority=900 2025-06-04T06:18:50.4354130Z type=ref,event=branch,enable=true,priority=600 2025-06-04T06:18:50.4354190Z type=ref,event=pr,prefix=pr-,enable=true,priority=600 2025-06-04T06:18:50.4354332Z ::endgroup:: 2025-06-04T06:18:50.4354477Z ::group::Processing flavor input 2025-06-04T06:18:50.4354542Z latest=auto 2025-06-04T06:18:50.4354628Z prefix= 2025-06-04T06:18:50.4354689Z prefixLatest=false 2025-06-04T06:18:50.4354745Z suffix= 2025-06-04T06:18:50.4354797Z suffixLatest=false 2025-06-04T06:18:50.4354906Z ::endgroup:: 2025-06-04T06:18:50.4415763Z ::group::Docker image version 2025-06-04T06:18:50.4415898Z 1.1.5 2025-06-04T06:18:50.4416021Z ::endgroup:: 2025-06-04T06:18:50.4418252Z ::group::Docker tags 2025-06-04T06:18:50.4418398Z git.***.net/***/studio:1.1.5 2025-06-04T06:18:50.4418479Z git.***.net/***/studio:1.1 2025-06-04T06:18:50.4418540Z git.***.net/***/studio:latest 2025-06-04T06:18:50.4418663Z ::endgroup:: 2025-06-04T06:18:50.5660856Z ::group::Docker labels 2025-06-04T06:18:50.5661154Z org.opencontainers.image.created=2025-06-04T06:18:50.435Z 2025-06-04T06:18:50.5661234Z org.opencontainers.image.description= 2025-06-04T06:18:50.5661313Z org.opencontainers.image.licenses= 2025-06-04T06:18:50.5661373Z org.opencontainers.image.revision=ac9f68ab1e0010c5319b08ab9e9a33900980f579 2025-06-04T06:18:50.5661461Z org.opencontainers.image.source=https://git.***.net/***/studio 2025-06-04T06:18:50.5661535Z org.opencontainers.image.title=studio 2025-06-04T06:18:50.5661592Z org.opencontainers.image.url=https://git.***.net/***/studio 2025-06-04T06:18:50.5661663Z org.opencontainers.image.version=1.1.5 2025-06-04T06:18:50.5663113Z ::endgroup:: 2025-06-04T06:18:50.5664111Z ::group::Annotations 2025-06-04T06:18:50.5664552Z manifest:org.opencontainers.image.created=2025-06-04T06:18:50.435Z 2025-06-04T06:18:50.5664644Z manifest:org.opencontainers.image.description= 2025-06-04T06:18:50.5664716Z manifest:org.opencontainers.image.licenses= 2025-06-04T06:18:50.5664776Z manifest:org.opencontainers.image.revision=ac9f68ab1e0010c5319b08ab9e9a33900980f579 2025-06-04T06:18:50.5664860Z manifest:org.opencontainers.image.source=https://git.***.net/***/studio 2025-06-04T06:18:50.5664921Z manifest:org.opencontainers.image.title=studio 2025-06-04T06:18:50.5664988Z manifest:org.opencontainers.image.url=https://git.***.net/***/studio 2025-06-04T06:18:50.5665047Z manifest:org.opencontainers.image.version=1.1.5 2025-06-04T06:18:50.5667269Z ::endgroup:: 2025-06-04T06:18:50.5670410Z ::group::JSON output 2025-06-04T06:18:50.5670724Z { 2025-06-04T06:18:50.5670804Z "tags": [ 2025-06-04T06:18:50.5670861Z "git.***.net/***/studio:1.1.5", 2025-06-04T06:18:50.5670942Z "git.***.net/***/studio:1.1", 2025-06-04T06:18:50.5670999Z "git.***.net/***/studio:latest" 2025-06-04T06:18:50.5671066Z ], 2025-06-04T06:18:50.5671119Z "labels": { 2025-06-04T06:18:50.5671178Z "org.opencontainers.image.created": "2025-06-04T06:18:50.435Z", 2025-06-04T06:18:50.5671280Z "org.opencontainers.image.description": "", 2025-06-04T06:18:50.5671334Z "org.opencontainers.image.licenses": "", 2025-06-04T06:18:50.5671403Z "org.opencontainers.image.revision": "ac9f68ab1e0010c5319b08ab9e9a33900980f579", 2025-06-04T06:18:50.5671462Z "org.opencontainers.image.source": "https://git.***.net/***/studio", 2025-06-04T06:18:50.5671534Z "org.opencontainers.image.title": "studio", 2025-06-04T06:18:50.5671587Z "org.opencontainers.image.url": "https://git.***.net/***/studio", 2025-06-04T06:18:50.5671646Z "org.opencontainers.image.version": "1.1.5" 2025-06-04T06:18:50.5671710Z }, 2025-06-04T06:18:50.5671765Z "annotations": [ 2025-06-04T06:18:50.5671820Z "manifest:org.opencontainers.image.created=2025-06-04T06:18:50.435Z", 2025-06-04T06:18:50.5671879Z "manifest:org.opencontainers.image.description=", 2025-06-04T06:18:50.5671933Z "manifest:org.opencontainers.image.licenses=", 2025-06-04T06:18:50.5671986Z "manifest:org.opencontainers.image.revision=ac9f68ab1e0010c5319b08ab9e9a33900980f579", 2025-06-04T06:18:50.5672045Z "manifest:org.opencontainers.image.source=https://git.***.net/***/studio", 2025-06-04T06:18:50.5672115Z "manifest:org.opencontainers.image.title=studio", 2025-06-04T06:18:50.5672187Z "manifest:org.opencontainers.image.url=https://git.***.net/***/studio", 2025-06-04T06:18:50.5672265Z "manifest:org.opencontainers.image.version=1.1.5" 2025-06-04T06:18:50.5672318Z ] 2025-06-04T06:18:50.5672378Z } 2025-06-04T06:18:50.5672532Z ::endgroup:: 2025-06-04T06:18:50.5674497Z ::group::Bake file definition (tags) 2025-06-04T06:18:50.5675173Z { 2025-06-04T06:18:50.5675230Z "target": { 2025-06-04T06:18:50.5675306Z "docker-metadata-action": { 2025-06-04T06:18:50.5675361Z "tags": [ 2025-06-04T06:18:50.5675489Z "git.***.net/***/studio:1.1.5", 2025-06-04T06:18:50.5675594Z "git.***.net/***/studio:1.1", 2025-06-04T06:18:50.5675681Z "git.***.net/***/studio:latest" 2025-06-04T06:18:50.5675761Z ], 2025-06-04T06:18:50.5675811Z "args": { 2025-06-04T06:18:50.5675873Z "DOCKER_META_IMAGES": "git.***.net/***/studio", 2025-06-04T06:18:50.5675936Z "DOCKER_META_VERSION": "1.1.5" 2025-06-04T06:18:50.5676026Z } 2025-06-04T06:18:50.5676077Z } 2025-06-04T06:18:50.5676126Z } 2025-06-04T06:18:50.5676404Z } 2025-06-04T06:18:50.5677455Z ::endgroup:: 2025-06-04T06:18:50.5679338Z ::group::Bake file definition (labels) 2025-06-04T06:18:50.5679453Z { 2025-06-04T06:18:50.5679558Z "target": { 2025-06-04T06:18:50.5679658Z "docker-metadata-action": { 2025-06-04T06:18:50.5679720Z "labels": { 2025-06-04T06:18:50.5679949Z "org.opencontainers.image.created": "2025-06-04T06:18:50.435Z", 2025-06-04T06:18:50.5680025Z "org.opencontainers.image.description": "", 2025-06-04T06:18:50.5680153Z "org.opencontainers.image.licenses": "", 2025-06-04T06:18:50.5680215Z "org.opencontainers.image.revision": "ac9f68ab1e0010c5319b08ab9e9a33900980f579", 2025-06-04T06:18:50.5680295Z "org.opencontainers.image.source": "https://git.***.net/***/studio", 2025-06-04T06:18:50.5680367Z "org.opencontainers.image.title": "studio", 2025-06-04T06:18:50.5680426Z "org.opencontainers.image.url": "https://git.***.net/***/studio", 2025-06-04T06:18:50.5680503Z "org.opencontainers.image.version": "1.1.5" 2025-06-04T06:18:50.5680559Z } 2025-06-04T06:18:50.5680626Z } 2025-06-04T06:18:50.5680677Z } 2025-06-04T06:18:50.5680736Z } 2025-06-04T06:18:50.5681104Z ::endgroup:: 2025-06-04T06:18:50.5682933Z ::group::Bake file definition (annotations) 2025-06-04T06:18:50.5683670Z { 2025-06-04T06:18:50.5683829Z "target": { 2025-06-04T06:18:50.5684160Z "docker-metadata-action": { 2025-06-04T06:18:50.5684293Z "annotations": [ 2025-06-04T06:18:50.5684458Z "manifest:org.opencontainers.image.created=2025-06-04T06:18:50.435Z", 2025-06-04T06:18:50.5684608Z "manifest:org.opencontainers.image.description=", 2025-06-04T06:18:50.5684714Z "manifest:org.opencontainers.image.licenses=", 2025-06-04T06:18:50.5684890Z "manifest:org.opencontainers.image.revision=ac9f68ab1e0010c5319b08ab9e9a33900980f579", 2025-06-04T06:18:50.5685011Z "manifest:org.opencontainers.image.source=https://git.***.net/***/studio", 2025-06-04T06:18:50.5685354Z "manifest:org.opencontainers.image.title=studio", 2025-06-04T06:18:50.5685580Z "manifest:org.opencontainers.image.url=https://git.***.net/***/studio", 2025-06-04T06:18:50.5685763Z "manifest:org.opencontainers.image.version=1.1.5" 2025-06-04T06:18:50.5685900Z ] 2025-06-04T06:18:50.5686005Z } 2025-06-04T06:18:50.5686157Z } 2025-06-04T06:18:50.5686240Z } 2025-06-04T06:18:50.5686517Z ::endgroup:: 2025-06-04T06:18:50.6748915Z + echo '{"tags":["git.***.net/***/studio:1.1.5","git.***.net/***/studio:1.1","git.***.net/***/studio:latest"],"labels":{"org.opencontainers.image.created":"2025-06-04T06:18:50.435Z","org.opencontainers.image.description":"","org.opencontainers.image.licenses":"","org.opencontainers.image.revision":"ac9f68ab1e0010c5319b08ab9e9a33900980f579","org.opencontainers.image.source":"https://git.***.net/***/studio","org.opencontainers.image.title":"studio","org.opencontainers.image.url":"https://git.***.net/***/studio","org.opencontainers.image.version":"1.1.5"},"annotations":["manifest:org.opencontainers.image.created=2025-06-04T06:18:50.435Z","manifest:org.opencontainers.image.description=","manifest:org.opencontainers.image.licenses=","manifest:org.opencontainers.image.revision=ac9f68ab1e0010c5319b08ab9e9a33900980f579","manifest:org.opencontainers.image.source=https://git.***.net/***/studio","manifest:org.opencontainers.image.title=studio","manifest:org.opencontainers.image.url=https://git.***.net/***/studio","manifest:org.opencontainers.image.version=1.1.5"]}' 2025-06-04T06:18:50.6749736Z + ls -al /tmp/digests 2025-06-04T06:18:50.6749938Z {"tags":["git.***.net/***/studio:1.1.5","git.***.net/***/studio:1.1","git.***.net/***/studio:latest"],"labels":{"org.opencontainers.image.created":"2025-06-04T06:18:50.435Z","org.opencontainers.image.description":"","org.opencontainers.image.licenses":"","org.opencontainers.image.revision":"ac9f68ab1e0010c5319b08ab9e9a33900980f579","org.opencontainers.image.source":"https://git.***.net/***/studio","org.opencontainers.image.title":"studio","org.opencontainers.image.url":"https://git.***.net/***/studio","org.opencontainers.image.version":"1.1.5"},"annotations":["manifest:org.opencontainers.image.created=2025-06-04T06:18:50.435Z","manifest:org.opencontainers.image.description=","manifest:org.opencontainers.image.licenses=","manifest:org.opencontainers.image.revision=ac9f68ab1e0010c5319b08ab9e9a33900980f579","manifest:org.opencontainers.image.source=https://git.***.net/***/studio","manifest:org.opencontainers.image.title=studio","manifest:org.opencontainers.image.url=https://git.***.net/***/studio","manifest:org.opencontainers.image.version=1.1.5"]} 2025-06-04T06:18:50.6764506Z total 8 2025-06-04T06:18:50.6764815Z drwxr-xr-x 2 root root 4096 Jun 4 06:18 . 2025-06-04T06:18:50.6764939Z drwxrwxrwt 1 root root 4096 Jun 4 06:18 .. 2025-06-04T06:18:50.6765046Z -rw-r--r-- 1 root root 0 Jun 4 06:18 4d5dfc2dec07b44939ffc9d7834a4a5f399d91d6f29a117c17d3864375f79cb6 2025-06-04T06:18:50.6765197Z -rw-r--r-- 1 root root 0 Jun 4 06:18 e2bea18c9cf78764342237371f45112ed9dd295c1efdca48217072d08af24cf5 2025-06-04T06:18:50.6767827Z ++ jq -cr '.tags | map("-t " + .) | join(" ")' 2025-06-04T06:18:50.8185759Z ++ printf 'git.***.net/***/studio@sha256:%s ' 4d5dfc2dec07b44939ffc9d7834a4a5f399d91d6f29a117c17d3864375f79cb6 e2bea18c9cf78764342237371f45112ed9dd295c1efdca48217072d08af24cf5 2025-06-04T06:18:50.8186172Z + docker buildx imagetools create -t git.***.net/***/studio:1.1.5 -t git.***.net/***/studio:1.1 -t git.***.net/***/studio:latest git.***.net/***/studio@sha256:4d5dfc2dec07b44939ffc9d7834a4a5f399d91d6f29a117c17d3864375f79cb6 git.***.net/***/studio@sha256:e2bea18c9cf78764342237371f45112ed9dd295c1efdca48217072d08af24cf5 2025-06-04T06:18:50.9338439Z #1 [internal] pushing git.***.net/***/studio:latest 2025-06-04T06:18:50.9728162Z #1 0.000 pushing sha256:378a4fbecd0e08127b23e0508053e0961f602c6cfa43a3cc2f25481b8c49841c to git.***.net/***/studio:latest 2025-06-04T06:18:50.9728705Z #1 ERROR: failed commit on ref "index-sha256:378a4fbecd0e08127b23e0508053e0961f602c6cfa43a3cc2f25481b8c49841c": unexpected status from PUT request to https://git.***.net/v2/***/studio/manifests/latest: 500 Internal Server Error 2025-06-04T06:18:50.9728902Z 2025-06-04T06:18:50.9729022Z #2 [internal] pushing git.***.net/***/studio:1.1.5 2025-06-04T06:18:50.9729147Z #2 0.003 pushing sha256:378a4fbecd0e08127b23e0508053e0961f602c6cfa43a3cc2f25481b8c49841c to git.***.net/***/studio:1.1.5 2025-06-04T06:18:50.9729279Z #2 ERROR: failed commit on ref "index-sha256:378a4fbecd0e08127b23e0508053e0961f602c6cfa43a3cc2f25481b8c49841c": unexpected status from PUT request to https://git.***.net/v2/***/studio/manifests/1.1.5: 500 Internal Server Error 2025-06-04T06:18:50.9729426Z 2025-06-04T06:18:50.9729534Z #3 [internal] pushing git.***.net/***/studio:1.1 2025-06-04T06:18:50.9729669Z #3 0.003 pushing sha256:378a4fbecd0e08127b23e0508053e0961f602c6cfa43a3cc2f25481b8c49841c to git.***.net/***/studio:1.1 2025-06-04T06:18:50.9729812Z #3 DONE 0.0s 2025-06-04T06:18:50.9729917Z ------ 2025-06-04T06:18:50.9730013Z > [internal] pushing git.***.net/***/studio:latest: 2025-06-04T06:18:50.9730127Z 0.000 pushing sha256:378a4fbecd0e08127b23e0508053e0961f602c6cfa43a3cc2f25481b8c49841c to git.***.net/***/studio:latest 2025-06-04T06:18:50.9730248Z ------ 2025-06-04T06:18:50.9730353Z ------ 2025-06-04T06:18:50.9730453Z > [internal] pushing git.***.net/***/studio:1.1.5: 2025-06-04T06:18:50.9730560Z 0.003 pushing sha256:378a4fbecd0e08127b23e0508053e0961f602c6cfa43a3cc2f25481b8c49841c to git.***.net/***/studio:1.1.5 2025-06-04T06:18:50.9730793Z ------ 2025-06-04T06:18:50.9730968Z ERROR: failed commit on ref "index-sha256:378a4fbecd0e08127b23e0508053e0961f602c6cfa43a3cc2f25481b8c49841c": unexpected status from PUT request to https://git.***.net/v2/***/studio/manifests/1.1.5: 500 Internal Server Error 2025-06-04T06:18:51.0153965Z evaluating expression 'always()' 2025-06-04T06:18:51.0154566Z expression 'always()' evaluated to 'true' 2025-06-04T06:18:51.0154731Z ⭐ Run Post Set up Docker Buildx 2025-06-04T06:18:51.0154940Z Writing entry to tarball workflow/outputcmd.txt len:0 2025-06-04T06:18:51.0155120Z Writing entry to tarball workflow/statecmd.txt len:0 2025-06-04T06:18:51.0155252Z Writing entry to tarball workflow/pathcmd.txt len:0 2025-06-04T06:18:51.0155388Z Writing entry to tarball workflow/envs.txt len:0 2025-06-04T06:18:51.0155500Z Writing entry to tarball workflow/SUMMARY.md len:0 2025-06-04T06:18:51.0155692Z Extracting content to '/var/run/act' 2025-06-04T06:18:51.0167114Z run post step for 'Set up Docker Buildx' 2025-06-04T06:18:51.0167784Z executing remote job container: [node /var/run/act/actions/6a647958c11e138a6cfcaf32d2b372bc8e0c97871d617bfb441d003d505b77cf/dist/index.js] 2025-06-04T06:18:51.0167981Z 🐳 docker exec cmd=[node /var/run/act/actions/6a647958c11e138a6cfcaf32d2b372bc8e0c97871d617bfb441d003d505b77cf/dist/index.js] user= workdir= 2025-06-04T06:18:51.0168131Z Exec command '[node /var/run/act/actions/6a647958c11e138a6cfcaf32d2b372bc8e0c97871d617bfb441d003d505b77cf/dist/index.js]' 2025-06-04T06:18:51.0168549Z Working directory '/workspace/***/studio' 2025-06-04T06:18:51.2419648Z ::group::Removing builder 2025-06-04T06:18:51.2420193Z ::group::Removing builder 2025-06-04T06:18:51.3420521Z [command]/usr/bin/docker buildx rm builder-64208f18-c951-4f46-86e8-545bad2c92c8 2025-06-04T06:18:51.6347030Z builder-64208f18-c951-4f46-86e8-545bad2c92c8 removed 2025-06-04T06:18:51.6373505Z ::endgroup:: 2025-06-04T06:18:51.6373856Z ::endgroup:: 2025-06-04T06:18:51.6374907Z ::group::Cleaning up certificates 2025-06-04T06:18:51.6375119Z ::group::Cleaning up certificates 2025-06-04T06:18:51.6377775Z ::endgroup:: 2025-06-04T06:18:51.6377907Z ::endgroup:: 2025-06-04T06:18:51.6378399Z ::group::Post cache 2025-06-04T06:18:51.6378517Z ::group::Post cache 2025-06-04T06:18:51.6379923Z State not set 2025-06-04T06:18:51.6380155Z ::endgroup:: 2025-06-04T06:18:51.6380541Z ::endgroup:: 2025-06-04T06:18:51.6441410Z ✅ Success - Post Set up Docker Buildx 2025-06-04T06:18:51.6605048Z expression '${{ secrets.DOCKER_GITEA_TOKEN }}' rewritten to 'format('{0}', secrets.DOCKER_GITEA_TOKEN)' 2025-06-04T06:18:51.6605378Z evaluating expression 'format('{0}', secrets.DOCKER_GITEA_TOKEN)' 2025-06-04T06:18:51.6605771Z expression 'format('{0}', secrets.DOCKER_GITEA_TOKEN)' evaluated to '%!t(string=***)' 2025-06-04T06:18:51.6605988Z expression '${{ secrets.DOCKER_GITEA_USERNAME }}' rewritten to 'format('{0}', secrets.DOCKER_GITEA_USERNAME)' 2025-06-04T06:18:51.6606117Z evaluating expression 'format('{0}', secrets.DOCKER_GITEA_USERNAME)' 2025-06-04T06:18:51.6606336Z expression 'format('{0}', secrets.DOCKER_GITEA_USERNAME)' evaluated to '%!t(string=***)' 2025-06-04T06:18:51.6648038Z evaluating expression 'always()' 2025-06-04T06:18:51.6648485Z expression 'always()' evaluated to 'true' 2025-06-04T06:18:51.6648628Z ⭐ Run Post Log in to Gitea Docker Registry 2025-06-04T06:18:51.6648820Z Writing entry to tarball workflow/outputcmd.txt len:0 2025-06-04T06:18:51.6648998Z Writing entry to tarball workflow/statecmd.txt len:0 2025-06-04T06:18:51.6649124Z Writing entry to tarball workflow/pathcmd.txt len:0 2025-06-04T06:18:51.6649251Z Writing entry to tarball workflow/envs.txt len:0 2025-06-04T06:18:51.6649357Z Writing entry to tarball workflow/SUMMARY.md len:0 2025-06-04T06:18:51.6649478Z Extracting content to '/var/run/act' 2025-06-04T06:18:51.6664877Z run post step for 'Log in to Gitea Docker Registry' 2025-06-04T06:18:51.6665472Z executing remote job container: [node /var/run/act/actions/f4980c6ac598e909987ac91567f6966749e4ffb3917249bbe2a2399d45f65943/dist/index.js] 2025-06-04T06:18:51.6665640Z 🐳 docker exec cmd=[node /var/run/act/actions/f4980c6ac598e909987ac91567f6966749e4ffb3917249bbe2a2399d45f65943/dist/index.js] user= workdir= 2025-06-04T06:18:51.6665901Z Exec command '[node /var/run/act/actions/f4980c6ac598e909987ac91567f6966749e4ffb3917249bbe2a2399d45f65943/dist/index.js]' 2025-06-04T06:18:51.6666299Z Working directory '/workspace/***/studio' 2025-06-04T06:18:51.9559434Z [command]/usr/bin/docker logout git.***.net 2025-06-04T06:18:51.9663409Z Removing login credentials for git.***.net 2025-06-04T06:18:51.9686279Z ::group::Post cache 2025-06-04T06:18:51.9686649Z ::group::Post cache 2025-06-04T06:18:51.9686955Z State not set 2025-06-04T06:18:51.9687098Z ::endgroup:: 2025-06-04T06:18:51.9687185Z ::endgroup:: 2025-06-04T06:18:51.9743643Z ✅ Success - Post Log in to Gitea Docker Registry 2025-06-04T06:18:51.9785205Z Cleaning up container for job merge 2025-06-04T06:18:52.1601829Z Removed container: e075aa3323d0d152cb7e22a9ed3661e2cccc67c80bb5a87cde865837e070c92c 2025-06-04T06:18:52.1610735Z 🐳 docker volume rm GITEA-ACTIONS-TASK-1539_WORKFLOW-ci_JOB-merge 2025-06-04T06:18:52.1648537Z 🐳 docker volume rm GITEA-ACTIONS-TASK-1539_WORKFLOW-ci_JOB-merge-env 2025-06-04T06:18:52.2157492Z Cleaning up network for job merge, and network name is: GITEA-ACTIONS-TASK-1539_WORKFLOW-ci_JOB-merge-merge-network 2025-06-04T06:18:52.4563165Z 🏁 Job failed 2025-06-04T06:18:52.4611900Z Job 'merge' failed ``` <img width="1086" alt="Image" src="https://github.com/user-attachments/assets/75ccf9b1-7b34-47f4-905c-2f721f4a0e49" /> Gitea Server logs ```log gitea | 2025/06/19 14:56:25 .../container/manifest.go:453:createManifestBlob() [E] Error inserting package blob: Error 1062 (23000): Duplicate entry '16bbe4808962584fbed390f04feec4ba' for key 'package_blob.UQE_package_blob_md5' gitea | 2025/06/19 14:56:25 .../container/container.go:93:apiError() [E] Error 1062 (23000): Duplicate entry '16bbe4808962584fbed390f04feec4ba' for key 'package_blob.UQE_package_blob_md5' ``` **when i retry the `merge` section, it success.** ### Gitea Version 1.24.0 ### Can you reproduce the bug on the Gitea demo site? Yes ### Log Gist _No response_ ### Screenshots _No response_ ### Git Version _No response_ ### Operating System _No response_ ### How are you running Gitea? self host ### Database None
GiteaMirror added the issue/needs-feedbacktype/bug labels 2025-11-02 11:17:58 -06:00
Author
Owner

@wxiaoguang commented on GitHub (Jun 19, 2025):

Can you try the nightly build?

@wxiaoguang commented on GitHub (Jun 19, 2025): Can you try the nightly build? * https://dl.gitea.com/gitea/main-nightly/ * https://hub.docker.com/r/gitea/gitea/tags?name=nightly
Author
Owner

@wxiaoguang commented on GitHub (Jun 19, 2025):

By the way, if there is 500 error, there must be some detail logs.

Could you help to show the Gitea's server log?

(I see the log)

@wxiaoguang commented on GitHub (Jun 19, 2025): ~~By the way, if there is 500 error, there must be some detail logs.~~ ~~Could you help to show the Gitea's server log?~~ (I see the log)
Author
Owner

@wxiaoguang commented on GitHub (Jun 19, 2025):

Hmm, I remember there might be another trick: --max-concurrent-uploads (set to 1)

Maybe it could workaround the 500 error.

@wxiaoguang commented on GitHub (Jun 19, 2025): Hmm, I remember there might be another trick: `--max-concurrent-uploads` (set to 1) Maybe it could workaround the 500 error.
Author
Owner

@duguying commented on GitHub (Jun 20, 2025):

how to set --max-concurrent-uploads option, it seems like a docker daemon option in docker config file. but i use gitea act_runner as client. is that i should modify my docker config file in act_runner machine? it's not a good choice, i hope it could running in default docker well.

@duguying commented on GitHub (Jun 20, 2025): how to set `--max-concurrent-uploads` option, it seems like a docker daemon option in docker config file. but i use gitea act_runner as client. is that i should modify my docker config file in act_runner machine? it's not a good choice, i hope it could running in default docker well.
Author
Owner

@duguying commented on GitHub (Jun 20, 2025):

Can you try the nightly build?

nightly version works well.

Image Image
@duguying commented on GitHub (Jun 20, 2025): > Can you try the nightly build? > > * https://dl.gitea.com/gitea/main-nightly/ > * https://hub.docker.com/r/gitea/gitea/tags?name=nightly nightly version works well. <img width="911" alt="Image" src="https://github.com/user-attachments/assets/6ed12429-8718-4a00-99af-cc8bd1062f05" /> <img width="1027" alt="Image" src="https://github.com/user-attachments/assets/1ca83a68-e49d-4bac-9e61-04ca04bd7a1b" />
Author
Owner

@wxiaoguang commented on GitHub (Jun 20, 2025):

The nightly version contains many complex fixes and improvements, so I guess we won't backport the fix.

It's safe to keep using nightly build and no worry, any (regression) bug will be fixed in first time.

@wxiaoguang commented on GitHub (Jun 20, 2025): The nightly version contains many complex fixes and improvements, so I guess we won't backport the fix. It's safe to keep using nightly build and no worry, any (regression) bug will be fixed in first time.
Author
Owner

@duguying commented on GitHub (Jun 20, 2025):

The nightly version contains many complex fixes and improvements, so I guess we won't backport the fix.

It's safe to keep using nightly build and no worry, any (regression) bug will be fixed in first time.

but the nightly version has another bug. the title of action build seems wrong.

Image

it's now picked from run-name

Image

addition, new tag v1.1.26 not have new commit.

Image
@duguying commented on GitHub (Jun 20, 2025): > The nightly version contains many complex fixes and improvements, so I guess we won't backport the fix. > > It's safe to keep using nightly build and no worry, any (regression) bug will be fixed in first time. but the nightly version has another bug. the title of action build seems wrong. <img width="1036" alt="Image" src="https://github.com/user-attachments/assets/e3f5f3d3-6fe9-454b-a627-e21243442b5f" /> it's now picked from `run-name` <img width="699" alt="Image" src="https://github.com/user-attachments/assets/e6d6fa51-02ec-43c4-8d3c-95b41f26c5bc" /> addition, new tag `v1.1.26` not have new commit. <img width="973" alt="Image" src="https://github.com/user-attachments/assets/89190834-7486-43dd-aa4e-1b3b10dc2e79" />
Author
Owner

@wxiaoguang commented on GitHub (Jun 20, 2025):

but the nightly version has another bug. the title of action build seems wrong.

Maybe related to this one? Use run-name and evaluate workflow variables #34301 @lunny @badhezi do you have ideas?

addition, new tag v1.1.26 not have new commit.

Could you elaborate?

@wxiaoguang commented on GitHub (Jun 20, 2025): > but the nightly version has another bug. the title of action build seems wrong. Maybe related to this one? Use run-name and evaluate workflow variables #34301 @lunny @badhezi do you have ideas? > addition, new tag v1.1.26 not have new commit. Could you elaborate?
Author
Owner

@lunny commented on GitHub (Jun 20, 2025):

The action run name changed is by design which should match what's Github's behavior.

@lunny commented on GitHub (Jun 20, 2025): The action run name changed is by design which should match what's Github's behavior.
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/gitea#14623