docker / metadata-action

GitHub Action to extract metadata (tags, labels) from Git reference and GitHub events for Docker
https://github.com/marketplace/actions/docker-metadata-action
Apache License 2.0
911 stars 118 forks source link

Warning: No Docker image version has been generated. Check tags input. #375

Closed JwanKhalaf closed 9 months ago

JwanKhalaf commented 10 months ago

Contributing guidelines

I've found a bug, and:

Description

When a PR is merged, I want to push to Docker Hub with two tags: latest and v0.0.8 (or whatever the latest tag is).

However, I'm having a problem where the build and push action fails because it is expecting a tag to be present that it can't find.

Error: buildx failed with: ERROR: tag is needed when pushing to registry

Expected behaviour

I expect the new tag to be identified and picked up by the metadata action.

Actual behaviour

The new tag isn't found.

Repository URL

https://github.com/JwanKhalaf/bejebeje.admin

Workflow run URL

https://github.com/JwanKhalaf/bejebeje.admin/blob/main/.github/workflows/dockerhub-push.yml

YAML workflow

# this is a basic workflow to auto tag on merge into main and then
# build a docker image and push it to docker hub
name: auto-tag-and-push-to-dockerhub

# controls when the action will run.
# triggers the workflow when a new tag is pushed
on:
  push:
    branches: [main]

# a workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
  # this workflow contains two jobs, one to auto-tag and another to push to docker hub
  auto_tag:
    # the type of runner that the job will run on
    runs-on: ubuntu-latest

    # permissions
    permissions:
      contents: write

    # steps represent a sequence of tasks that will be executed as part of the job
    steps:
      # checks-out your repository under $GITHUB_WORKSPACE, so the job can access it
      - name: checkout the repository
        uses: actions/checkout@v4

      # auto tag
      - name: bump version and push tag
        uses: mathieudutour/github-tag-action@v6.1
        with:
          github_token: ${{ secrets.GITHUB_TOKEN }}

  push_to_registry:
    # this job depends on the previous auto_tag job
    needs: auto_tag

    # the type of runner that the job will run on
    runs-on: ubuntu-latest

    # steps represent a sequence of tasks that will be executed as part of the job
    steps:
      # checks-out your repository under $GITHUB_WORKSPACE, so the job can access it
      - name: checkout the repository
        uses: actions/checkout@v4

      # set up qemu
      - name: set up qemu
        uses: docker/setup-qemu-action@v3

      # set up docker buildx
      - name: set up docker buildx
        uses: docker/setup-buildx-action@v3

      # login into docker hub
      - name: login to docker hub
        uses: docker/login-action@v3
        with:
          username: ${{ secrets.DOCKERHUB_USERNAME }}
          password: ${{ secrets.DOCKERHUB_TOKEN }}

      # docker meta data
      - name: set up docker meta data
        id: meta
        uses: docker/metadata-action@v5
        with:
          images: bejebeje/admin
          flavor: |
            latest=true
          tags: |
            type=ref,event=tag

      # build the docker image then push it to docker hub
      - name: build and push
        uses: docker/build-push-action@v5
        with:
          context: .
          file: ./Dockerfile
          push: true
          tags: ${{ steps.meta.outputs.tags }}
          labels: ${{ steps.meta.outputs.labels }}

Workflow logs

2023-12-31T01:44:09.2950203Z Requested labels: ubuntu-latest
2023-12-31T01:44:09.2950541Z Job defined at: JwanKhalaf/bejebeje.admin/.github/workflows/dockerhub-push.yml@refs/heads/main
2023-12-31T01:44:09.2950655Z Waiting for a runner to pick up this job...
2023-12-31T01:44:09.5011014Z Job is waiting for a hosted runner to come online.
2023-12-31T01:44:12.1555551Z Job is about to start running on the hosted runner: GitHub Actions 2 (hosted)
2023-12-31T01:44:14.1500623Z Current runner version: '2.311.0'
2023-12-31T01:44:14.1523423Z ##[group]Operating System
2023-12-31T01:44:14.1524164Z Ubuntu
2023-12-31T01:44:14.1524549Z 22.04.3
2023-12-31T01:44:14.1524883Z LTS
2023-12-31T01:44:14.1525313Z ##[endgroup]
2023-12-31T01:44:14.1525721Z ##[group]Runner Image
2023-12-31T01:44:14.1526127Z Image: ubuntu-22.04
2023-12-31T01:44:14.1526598Z Version: 20231217.2.0
2023-12-31T01:44:14.1527623Z Included Software: https://github.com/actions/runner-images/blob/ubuntu22/20231217.2/images/ubuntu/Ubuntu2204-Readme.md
2023-12-31T01:44:14.1529082Z Image Release: https://github.com/actions/runner-images/releases/tag/ubuntu22%2F20231217.2
2023-12-31T01:44:14.1530076Z ##[endgroup]
2023-12-31T01:44:14.1530451Z ##[group]Runner Image Provisioner
2023-12-31T01:44:14.1530944Z 2.0.321.1
2023-12-31T01:44:14.1531367Z ##[endgroup]
2023-12-31T01:44:14.1533508Z ##[group]GITHUB_TOKEN Permissions
2023-12-31T01:44:14.1535229Z Actions: write
2023-12-31T01:44:14.1535624Z Checks: write
2023-12-31T01:44:14.1536307Z Contents: write
2023-12-31T01:44:14.1536767Z Deployments: write
2023-12-31T01:44:14.1537263Z Discussions: write
2023-12-31T01:44:14.1537705Z Issues: write
2023-12-31T01:44:14.1538082Z Metadata: read
2023-12-31T01:44:14.1538545Z Packages: write
2023-12-31T01:44:14.1538903Z Pages: write
2023-12-31T01:44:14.1539307Z PullRequests: write
2023-12-31T01:44:14.1539815Z RepositoryProjects: write
2023-12-31T01:44:14.1540278Z SecurityEvents: write
2023-12-31T01:44:14.1540676Z Statuses: write
2023-12-31T01:44:14.1541123Z ##[endgroup]
2023-12-31T01:44:14.1544031Z Secret source: Actions
2023-12-31T01:44:14.1544648Z Prepare workflow directory
2023-12-31T01:44:14.2162091Z Prepare all required actions
2023-12-31T01:44:14.2317101Z Getting action download info
2023-12-31T01:44:14.4395924Z Download action repository 'actions/checkout@v4' (SHA:b4ffde65f46336ab88eb53be808477a3936bae11)
2023-12-31T01:44:14.5425003Z Download action repository 'docker/setup-qemu-action@v3' (SHA:68827325e0b33c7199eb31dd4e31fbe9023e06e3)
2023-12-31T01:44:14.7259134Z Download action repository 'docker/setup-buildx-action@v3' (SHA:f95db51fddba0c2d1ec667646a06c2ce06100226)
2023-12-31T01:44:15.0072686Z Download action repository 'docker/login-action@v3' (SHA:343f7c4344506bcbf9b4de18042ae17996df046d)
2023-12-31T01:44:15.2156530Z Download action repository 'docker/metadata-action@v5' (SHA:9dc751fe249ad99385a2583ee0d084c400eee04e)
2023-12-31T01:44:15.5564481Z Download action repository 'docker/build-push-action@v5' (SHA:4a13e500e55cf31b7a5d59a38ab2040ab0f42f56)
2023-12-31T01:44:15.9047551Z Complete job name: push_to_registry
2023-12-31T01:44:15.9900107Z ##[group]Run actions/checkout@v4
2023-12-31T01:44:15.9900503Z with:
2023-12-31T01:44:15.9900867Z   repository: JwanKhalaf/***.admin
2023-12-31T01:44:15.9901325Z   token: ***
2023-12-31T01:44:15.9901568Z   ssh-strict: true
2023-12-31T01:44:15.9901831Z   persist-credentials: true
2023-12-31T01:44:15.9902127Z   clean: true
2023-12-31T01:44:15.9902388Z   sparse-checkout-cone-mode: true
2023-12-31T01:44:15.9902722Z   fetch-depth: 1
2023-12-31T01:44:15.9902994Z   fetch-tags: false
2023-12-31T01:44:15.9903265Z   show-progress: true
2023-12-31T01:44:15.9903535Z   lfs: false
2023-12-31T01:44:15.9903767Z   submodules: false
2023-12-31T01:44:15.9904032Z   set-safe-directory: true
2023-12-31T01:44:15.9904310Z ##[endgroup]
2023-12-31T01:44:16.1664192Z Syncing repository: JwanKhalaf/***.admin
2023-12-31T01:44:16.1665996Z ##[group]Getting Git version info
2023-12-31T01:44:16.1666739Z Working directory is '/home/runner/work/***.admin/***.admin'
2023-12-31T01:44:16.1667496Z [command]/usr/bin/git version
2023-12-31T01:44:16.1678253Z git version 2.43.0
2023-12-31T01:44:16.1702754Z ##[endgroup]
2023-12-31T01:44:16.1720648Z Temporarily overriding HOME='/home/runner/work/_temp/b4c5f865-322d-4ee0-a562-0e61c8e71d97' before making global git config changes
2023-12-31T01:44:16.1722442Z Adding repository directory to the temporary git global config as a safe directory
2023-12-31T01:44:16.1724126Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/***.admin/***.admin
2023-12-31T01:44:16.1757739Z Deleting the contents of '/home/runner/work/***.admin/***.admin'
2023-12-31T01:44:16.1763481Z ##[group]Initializing the repository
2023-12-31T01:44:16.1766504Z [command]/usr/bin/git init /home/runner/work/***.admin/***.admin
2023-12-31T01:44:16.1820586Z hint: Using 'master' as the name for the initial branch. This default branch name
2023-12-31T01:44:16.1821844Z hint: is subject to change. To configure the initial branch name to use in all
2023-12-31T01:44:16.1823130Z hint: of your new repositories, which will suppress this warning, call:
2023-12-31T01:44:16.1823923Z hint: 
2023-12-31T01:44:16.1824506Z hint:  git config --global init.defaultBranch <name>
2023-12-31T01:44:16.1825143Z hint: 
2023-12-31T01:44:16.1825862Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
2023-12-31T01:44:16.1827070Z hint: 'development'. The just-created branch can be renamed via this command:
2023-12-31T01:44:16.1828044Z hint: 
2023-12-31T01:44:16.1828477Z hint:  git branch -m <name>
2023-12-31T01:44:16.1833331Z Initialized empty Git repository in /home/runner/work/***.admin/***.admin/.git/
2023-12-31T01:44:16.1842977Z [command]/usr/bin/git remote add origin https://github.com/JwanKhalaf/***.admin
2023-12-31T01:44:16.1877868Z ##[endgroup]
2023-12-31T01:44:16.1878718Z ##[group]Disabling automatic garbage collection
2023-12-31T01:44:16.1881609Z [command]/usr/bin/git config --local gc.auto 0
2023-12-31T01:44:16.1913617Z ##[endgroup]
2023-12-31T01:44:16.1914437Z ##[group]Setting up auth
2023-12-31T01:44:16.1920168Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
2023-12-31T01:44:16.1949571Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :"
2023-12-31T01:44:16.2254173Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
2023-12-31T01:44:16.2285808Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :"
2023-12-31T01:44:16.2536032Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic ***
2023-12-31T01:44:16.2571989Z ##[endgroup]
2023-12-31T01:44:16.2572966Z ##[group]Fetching the repository
2023-12-31T01:44:16.2582340Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin +ead6f2c05cd62b03b70e34aae118f12c340f0737:refs/remotes/origin/main
2023-12-31T01:44:16.6576932Z From https://github.com/JwanKhalaf/***.admin
2023-12-31T01:44:16.6578070Z  * [new ref]         ead6f2c05cd62b03b70e34aae118f12c340f0737 -> origin/main
2023-12-31T01:44:16.6602591Z ##[endgroup]
2023-12-31T01:44:16.6603269Z ##[group]Determining the checkout info
2023-12-31T01:44:16.6604958Z ##[endgroup]
2023-12-31T01:44:16.6605690Z ##[group]Checking out the ref
2023-12-31T01:44:16.6609699Z [command]/usr/bin/git checkout --progress --force -B main refs/remotes/origin/main
2023-12-31T01:44:16.7413876Z Switched to a new branch 'main'
2023-12-31T01:44:16.7414988Z branch 'main' set up to track 'origin/main'.
2023-12-31T01:44:16.7425032Z ##[endgroup]
2023-12-31T01:44:16.7461721Z [command]/usr/bin/git log -1 --format='%H'
2023-12-31T01:44:16.7484602Z 'ead6f2c05cd62b03b70e34aae118f12c340f0737'
2023-12-31T01:44:16.7742474Z ##[group]Run docker/setup-qemu-action@v3
2023-12-31T01:44:16.7742983Z with:
2023-12-31T01:44:16.7743425Z   image: tonistiigi/binfmt:latest
2023-12-31T01:44:16.7743868Z   platforms: all
2023-12-31T01:44:16.7744177Z ##[endgroup]
2023-12-31T01:44:16.8199136Z ##[group]Docker info
2023-12-31T01:44:16.8230221Z [command]/usr/bin/docker version
2023-12-31T01:44:16.8689749Z Client: Docker Engine - Community
2023-12-31T01:44:16.8693337Z  Version:           24.0.7
2023-12-31T01:44:16.8694129Z  API version:       1.43
2023-12-31T01:44:16.8695149Z  Go version:        go1.20.10
2023-12-31T01:44:16.8696001Z  Git commit:        afdd53b
2023-12-31T01:44:16.8696688Z  Built:             Thu Oct 26 09:07:41 2023
2023-12-31T01:44:16.8697422Z  OS/Arch:           linux/amd64
2023-12-31T01:44:16.8698176Z  Context:           default
2023-12-31T01:44:16.8698539Z 
2023-12-31T01:44:16.8698869Z Server: Docker Engine - Community
2023-12-31T01:44:16.8699540Z  Engine:
2023-12-31T01:44:16.8700363Z   Version:          24.0.7
2023-12-31T01:44:16.8701071Z   API version:      1.43 (minimum version 1.12)
2023-12-31T01:44:16.8701786Z   Go version:       go1.20.10
2023-12-31T01:44:16.8702205Z   Git commit:       311b9ff
2023-12-31T01:44:16.8702643Z   Built:            Thu Oct 26 09:07:41 2023
2023-12-31T01:44:16.8703218Z   OS/Arch:          linux/amd64
2023-12-31T01:44:16.8703616Z   Experimental:     false
2023-12-31T01:44:16.8704025Z  containerd:
2023-12-31T01:44:16.8704451Z   Version:          1.6.26
2023-12-31T01:44:16.8704946Z   GitCommit:        3dd1e886e55dd695541fdcd67420c2888645a495
2023-12-31T01:44:16.8705589Z  runc:
2023-12-31T01:44:16.8705870Z   Version:          1.1.10
2023-12-31T01:44:16.8706328Z   GitCommit:        v1.1.10-0-g18a0cb0
2023-12-31T01:44:16.8706838Z  docker-init:
2023-12-31T01:44:16.8707160Z   Version:          0.19.0
2023-12-31T01:44:16.8707545Z   GitCommit:        de40ad0
2023-12-31T01:44:16.8731233Z [command]/usr/bin/docker info
2023-12-31T01:44:16.9916738Z Client: Docker Engine - Community
2023-12-31T01:44:16.9918162Z  Version:    24.0.7
2023-12-31T01:44:16.9919031Z  Context:    default
2023-12-31T01:44:16.9919835Z  Debug Mode: false
2023-12-31T01:44:16.9920856Z  Plugins:
2023-12-31T01:44:16.9921618Z   buildx: Docker Buildx (Docker Inc.)
2023-12-31T01:44:16.9922814Z     Version:  v0.11.2
2023-12-31T01:44:16.9923976Z     Path:     /usr/libexec/docker/cli-plugins/docker-buildx
2023-12-31T01:44:16.9925086Z   compose: Docker Compose (Docker Inc.)
2023-12-31T01:44:16.9926141Z     Version:  v2.23.3
2023-12-31T01:44:16.9927254Z     Path:     /usr/libexec/docker/cli-plugins/docker-compose
2023-12-31T01:44:16.9928049Z 
2023-12-31T01:44:16.9928355Z Server:
2023-12-31T01:44:16.9929219Z  Containers: 0
2023-12-31T01:44:16.9929865Z   Running: 0
2023-12-31T01:44:16.9930486Z   Paused: 0
2023-12-31T01:44:16.9931342Z   Stopped: 0
2023-12-31T01:44:16.9931936Z  Images: 16
2023-12-31T01:44:16.9932757Z  Server Version: 24.0.7
2023-12-31T01:44:16.9933500Z  Storage Driver: overlay2
2023-12-31T01:44:16.9934282Z   Backing Filesystem: extfs
2023-12-31T01:44:16.9935241Z   Supports d_type: true
2023-12-31T01:44:16.9936116Z   Using metacopy: false
2023-12-31T01:44:16.9936967Z   Native Overlay Diff: false
2023-12-31T01:44:16.9937992Z   userxattr: false
2023-12-31T01:44:16.9938952Z  Logging Driver: json-file
2023-12-31T01:44:16.9939800Z  Cgroup Driver: cgroupfs
2023-12-31T01:44:16.9940769Z  Cgroup Version: 2
2023-12-31T01:44:16.9942091Z  Plugins:
2023-12-31T01:44:16.9942902Z   Volume: local
2023-12-31T01:44:16.9943577Z   Network: bridge host ipvlan macvlan null overlay
2023-12-31T01:44:16.9945003Z   Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog
2023-12-31T01:44:16.9946310Z  Swarm: inactive
2023-12-31T01:44:16.9947036Z  Runtimes: io.containerd.runc.v2 runc
2023-12-31T01:44:16.9947837Z  Default Runtime: runc
2023-12-31T01:44:16.9948982Z  Init Binary: docker-init
2023-12-31T01:44:16.9949927Z  containerd version: 3dd1e886e55dd695541fdcd67420c2888645a495
2023-12-31T01:44:16.9951497Z  runc version: v1.1.10-0-g18a0cb0
2023-12-31T01:44:16.9952472Z  init version: de40ad0
2023-12-31T01:44:16.9953266Z  Security Options:
2023-12-31T01:44:16.9953887Z   apparmor
2023-12-31T01:44:16.9954599Z   seccomp
2023-12-31T01:44:16.9955185Z    Profile: builtin
2023-12-31T01:44:16.9955811Z   cgroupns
2023-12-31T01:44:16.9956721Z  Kernel Version: 6.2.0-1018-azure
2023-12-31T01:44:16.9957430Z  Operating System: Ubuntu 22.04.3 LTS
2023-12-31T01:44:16.9958113Z  OSType: linux
2023-12-31T01:44:16.9958795Z  Architecture: x86_64
2023-12-31T01:44:16.9959379Z  CPUs: 4
2023-12-31T01:44:16.9960333Z  Total Memory: 15.61GiB
2023-12-31T01:44:16.9960986Z  Name: fv-az569-346
2023-12-31T01:44:16.9961726Z  ID: 475e7ed5-e838-42ee-a486-2e6cf60dc459
2023-12-31T01:44:16.9962625Z  Docker Root Dir: /var/lib/docker
2023-12-31T01:44:16.9963277Z  Debug Mode: false
2023-12-31T01:44:16.9963845Z  Username: githubactions
2023-12-31T01:44:16.9964486Z  Experimental: false
2023-12-31T01:44:16.9965088Z  Insecure Registries:
2023-12-31T01:44:16.9965718Z   127.0.0.0/8
2023-12-31T01:44:16.9966379Z  Live Restore Enabled: false
2023-12-31T01:44:16.9966782Z 
2023-12-31T01:44:16.9967565Z ##[endgroup]
2023-12-31T01:44:16.9968586Z ##[group]Pulling binfmt Docker image
2023-12-31T01:44:16.9969802Z [command]/usr/bin/docker pull tonistiigi/binfmt:latest
2023-12-31T01:44:17.2502485Z latest: Pulling from tonistiigi/binfmt
2023-12-31T01:44:17.3068047Z 8d4d64c318a5: Pulling fs layer
2023-12-31T01:44:17.3069298Z e9c608ddc3cb: Pulling fs layer
2023-12-31T01:44:17.3850746Z e9c608ddc3cb: Verifying Checksum
2023-12-31T01:44:17.3851225Z e9c608ddc3cb: Download complete
2023-12-31T01:44:17.4853165Z 8d4d64c318a5: Verifying Checksum
2023-12-31T01:44:17.4853989Z 8d4d64c318a5: Download complete
2023-12-31T01:44:17.8264868Z 8d4d64c318a5: Pull complete
2023-12-31T01:44:17.9918922Z e9c608ddc3cb: Pull complete
2023-12-31T01:44:17.9966091Z Digest: sha256:66e11bea77a5ea9d6f0fe79b57cd2b189b5d15b93a2bdb925be22949232e4e55
2023-12-31T01:44:17.9981525Z Status: Downloaded newer image for tonistiigi/binfmt:latest
2023-12-31T01:44:17.9990357Z docker.io/tonistiigi/binfmt:latest
2023-12-31T01:44:18.0009679Z ##[endgroup]
2023-12-31T01:44:18.0011130Z ##[group]Image info
2023-12-31T01:44:18.0024334Z [command]/usr/bin/docker image inspect tonistiigi/binfmt:latest
2023-12-31T01:44:18.0158900Z [
2023-12-31T01:44:18.0159705Z     {
2023-12-31T01:44:18.0160557Z         "Id": "sha256:354472a378935adfe74a19600b89bd9ada7bb058306fff23b3d6613405852faf",
2023-12-31T01:44:18.0161163Z         "RepoTags": [
2023-12-31T01:44:18.0161541Z             "tonistiigi/binfmt:latest"
2023-12-31T01:44:18.0162064Z         ],
2023-12-31T01:44:18.0162387Z         "RepoDigests": [
2023-12-31T01:44:18.0163041Z             "tonistiigi/binfmt@sha256:66e11bea77a5ea9d6f0fe79b57cd2b189b5d15b93a2bdb925be22949232e4e55"
2023-12-31T01:44:18.0163733Z         ],
2023-12-31T01:44:18.0164047Z         "Parent": "",
2023-12-31T01:44:18.0164462Z         "Comment": "buildkit.dockerfile.v0",
2023-12-31T01:44:18.0165260Z         "Created": "2022-08-02T19:13:20.178433831Z",
2023-12-31T01:44:18.0165727Z         "Container": "",
2023-12-31T01:44:18.0166064Z         "ContainerConfig": {
2023-12-31T01:44:18.0166512Z             "Hostname": "",
2023-12-31T01:44:18.0166941Z             "Domainname": "",
2023-12-31T01:44:18.0167380Z             "User": "",
2023-12-31T01:44:18.0167744Z             "AttachStdin": false,
2023-12-31T01:44:18.0168133Z             "AttachStdout": false,
2023-12-31T01:44:18.0168597Z             "AttachStderr": false,
2023-12-31T01:44:18.0168993Z             "Tty": false,
2023-12-31T01:44:18.0169377Z             "OpenStdin": false,
2023-12-31T01:44:18.0169789Z             "StdinOnce": false,
2023-12-31T01:44:18.0170184Z             "Env": null,
2023-12-31T01:44:18.0170532Z             "Cmd": null,
2023-12-31T01:44:18.0170980Z             "Image": "",
2023-12-31T01:44:18.0171372Z             "Volumes": null,
2023-12-31T01:44:18.0171746Z             "WorkingDir": "",
2023-12-31T01:44:18.0172159Z             "Entrypoint": null,
2023-12-31T01:44:18.0172880Z             "OnBuild": null,
2023-12-31T01:44:18.0173275Z             "Labels": null
2023-12-31T01:44:18.0173723Z         },
2023-12-31T01:44:18.0174036Z         "DockerVersion": "",
2023-12-31T01:44:18.0174370Z         "Author": "",
2023-12-31T01:44:18.0174805Z         "Config": {
2023-12-31T01:44:18.0175310Z             "Hostname": "",
2023-12-31T01:44:18.0175805Z             "Domainname": "",
2023-12-31T01:44:18.0176310Z             "User": "",
2023-12-31T01:44:18.0176661Z             "AttachStdin": false,
2023-12-31T01:44:18.0177527Z             "AttachStdout": false,
2023-12-31T01:44:18.0178182Z             "AttachStderr": false,
2023-12-31T01:44:18.0178824Z             "Tty": false,
2023-12-31T01:44:18.0179479Z             "OpenStdin": false,
2023-12-31T01:44:18.0180045Z             "StdinOnce": false,
2023-12-31T01:44:18.0180656Z             "Env": [
2023-12-31T01:44:18.0181520Z                 "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
2023-12-31T01:44:18.0182467Z                 "QEMU_PRESERVE_ARGV0=1"
2023-12-31T01:44:18.0183082Z             ],
2023-12-31T01:44:18.0183680Z             "Cmd": null,
2023-12-31T01:44:18.0184248Z             "Image": "",
2023-12-31T01:44:18.0184790Z             "Volumes": {
2023-12-31T01:44:18.0185402Z                 "/tmp": {}
2023-12-31T01:44:18.0185920Z             },
2023-12-31T01:44:18.0186414Z             "WorkingDir": "/",
2023-12-31T01:44:18.0187103Z             "Entrypoint": [
2023-12-31T01:44:18.0187695Z                 "/usr/bin/binfmt"
2023-12-31T01:44:18.0188356Z             ],
2023-12-31T01:44:18.0189072Z             "OnBuild": null,
2023-12-31T01:44:18.0189664Z             "Labels": {
2023-12-31T01:44:18.0190671Z                 "org.opencontainers.image.created": "2022-08-02T18:32:39.936Z",
2023-12-31T01:44:18.0192334Z                 "org.opencontainers.image.description": "Cross-platform emulator collection distributed with Docker images",
2023-12-31T01:44:18.0193689Z                 "org.opencontainers.image.licenses": "MIT",
2023-12-31T01:44:18.0194895Z                 "org.opencontainers.image.revision": "a161c41c7aeaf3ef1c5b97f91aa02a12cca73432",
2023-12-31T01:44:18.0196265Z                 "org.opencontainers.image.source": "https://github.com/tonistiigi/binfmt",
2023-12-31T01:44:18.0197351Z                 "org.opencontainers.image.title": "Binfmt",
2023-12-31T01:44:18.0198507Z                 "org.opencontainers.image.url": "https://github.com/tonistiigi/binfmt",
2023-12-31T01:44:18.0199716Z                 "org.opencontainers.image.version": "qemu-v7.0.0-28"
2023-12-31T01:44:18.0200501Z             }
2023-12-31T01:44:18.0201027Z         },
2023-12-31T01:44:18.0201508Z         "Architecture": "amd64",
2023-12-31T01:44:18.0202098Z         "Os": "linux",
2023-12-31T01:44:18.0202736Z         "Size": 60182964,
2023-12-31T01:44:18.0203246Z         "VirtualSize": 60182964,
2023-12-31T01:44:18.0203841Z         "GraphDriver": {
2023-12-31T01:44:18.0204478Z             "Data": {
2023-12-31T01:44:18.0205643Z                 "LowerDir": "/var/lib/docker/overlay2/1b8673416862f70ef3f1eedd5264e9a58e90992a37e38b8ed1e7b6b98243c4ad/diff",
2023-12-31T01:44:18.0207710Z                 "MergedDir": "/var/lib/docker/overlay2/f8aac1b99293111d55129f8a8e8a7a5e896d5e77d49f216bb09e1fcf270230af/merged",
2023-12-31T01:44:18.0209663Z                 "UpperDir": "/var/lib/docker/overlay2/f8aac1b99293111d55129f8a8e8a7a5e896d5e77d49f216bb09e1fcf270230af/diff",
2023-12-31T01:44:18.0211507Z                 "WorkDir": "/var/lib/docker/overlay2/f8aac1b99293111d55129f8a8e8a7a5e896d5e77d49f216bb09e1fcf270230af/work"
2023-12-31T01:44:18.0212857Z             },
2023-12-31T01:44:18.0213347Z             "Name": "overlay2"
2023-12-31T01:44:18.0213930Z         },
2023-12-31T01:44:18.0214488Z         "RootFS": {
2023-12-31T01:44:18.0214957Z             "Type": "layers",
2023-12-31T01:44:18.0215546Z             "Layers": [
2023-12-31T01:44:18.0216483Z                 "sha256:4c67e4044f8c0fe3e3efaf76f2a3d5d3d866f8ef2e8a9da756949d90e576baa0",
2023-12-31T01:44:18.0217978Z                 "sha256:949acf1cb73a60306e050836deb85a26fe23e226f6bcc499872b057efbf22dd1"
2023-12-31T01:44:18.0218912Z             ]
2023-12-31T01:44:18.0219411Z         },
2023-12-31T01:44:18.0219888Z         "Metadata": {
2023-12-31T01:44:18.0220552Z             "LastTagTime": "0001-01-01T00:00:00Z"
2023-12-31T01:44:18.0221290Z         }
2023-12-31T01:44:18.0221744Z     }
2023-12-31T01:44:18.0222151Z ]
2023-12-31T01:44:18.0223219Z ##[endgroup]
2023-12-31T01:44:18.0224153Z ##[group]Installing QEMU static binaries
2023-12-31T01:44:18.0225927Z [command]/usr/bin/docker run --rm --privileged tonistiigi/binfmt:latest --install all
2023-12-31T01:44:18.2470753Z installing: arm64 OK
2023-12-31T01:44:18.2472103Z installing: arm OK
2023-12-31T01:44:18.2472749Z installing: s390x OK
2023-12-31T01:44:18.2473320Z installing: ppc64le OK
2023-12-31T01:44:18.2473681Z installing: riscv64 OK
2023-12-31T01:44:18.2474060Z installing: mips64le OK
2023-12-31T01:44:18.2474491Z installing: mips64 OK
2023-12-31T01:44:18.2692579Z {
2023-12-31T01:44:18.2693568Z   "supported": [
2023-12-31T01:44:18.2694472Z     "linux/amd64",
2023-12-31T01:44:18.2695377Z     "linux/arm64",
2023-12-31T01:44:18.2696202Z     "linux/riscv64",
2023-12-31T01:44:18.2697151Z     "linux/ppc64le",
2023-12-31T01:44:18.2697894Z     "linux/s390x",
2023-12-31T01:44:18.2698415Z     "linux/386",
2023-12-31T01:44:18.2699579Z     "linux/mips64le",
2023-12-31T01:44:18.2700288Z     "linux/mips64",
2023-12-31T01:44:18.2700814Z     "linux/arm/v7",
2023-12-31T01:44:18.2703652Z     "linux/arm/v6"
2023-12-31T01:44:18.2704418Z   ],
2023-12-31T01:44:18.2706014Z   "emulators": [
2023-12-31T01:44:18.2706691Z     "cli",
2023-12-31T01:44:18.2707384Z     "llvm-13-runtime.binfmt",
2023-12-31T01:44:18.2708199Z     "llvm-14-runtime.binfmt",
2023-12-31T01:44:18.2709100Z     "llvm-15-runtime.binfmt",
2023-12-31T01:44:18.2709726Z     "python3.10",
2023-12-31T01:44:18.2710375Z     "qemu-aarch64",
2023-12-31T01:44:18.2710711Z     "qemu-arm",
2023-12-31T01:44:18.2711063Z     "qemu-mips64",
2023-12-31T01:44:18.2711527Z     "qemu-mips64el",
2023-12-31T01:44:18.2711912Z     "qemu-ppc64le",
2023-12-31T01:44:18.2712251Z     "qemu-riscv64",
2023-12-31T01:44:18.2712715Z     "qemu-s390x"
2023-12-31T01:44:18.2713026Z   ]
2023-12-31T01:44:18.2713385Z }
2023-12-31T01:44:18.3975759Z ##[endgroup]
2023-12-31T01:44:18.3976535Z ##[group]Extracting available platforms
2023-12-31T01:44:18.7596287Z linux/amd64,linux/arm64,linux/riscv64,linux/ppc64le,linux/s390x,linux/386,linux/mips64le,linux/mips64,linux/arm/v7,linux/arm/v6
2023-12-31T01:44:18.7599289Z ##[endgroup]
2023-12-31T01:44:18.7726028Z ##[group]Run docker/setup-buildx-action@v3
2023-12-31T01:44:18.7726537Z with:
2023-12-31T01:44:18.7726854Z   driver: docker-container
2023-12-31T01:44:18.7727599Z   buildkitd-flags: --allow-insecure-entitlement security.insecure --allow-insecure-entitlement network.host
2023-12-31T01:44:18.7728339Z   install: false
2023-12-31T01:44:18.7728663Z   use: true
2023-12-31T01:44:18.7729059Z   cleanup: true
2023-12-31T01:44:18.7729379Z ##[endgroup]
2023-12-31T01:44:18.9182417Z ##[group]Docker info
2023-12-31T01:44:18.9213285Z [command]/usr/bin/docker version
2023-12-31T01:44:18.9422008Z Client: Docker Engine - Community
2023-12-31T01:44:18.9422927Z  Version:           24.0.7
2023-12-31T01:44:18.9423580Z  API version:       1.43
2023-12-31T01:44:18.9424308Z  Go version:        go1.20.10
2023-12-31T01:44:18.9424879Z  Git commit:        afdd53b
2023-12-31T01:44:18.9425542Z  Built:             Thu Oct 26 09:07:41 2023
2023-12-31T01:44:18.9426365Z  OS/Arch:           linux/amd64
2023-12-31T01:44:18.9428047Z  Context:           default
2023-12-31T01:44:18.9428324Z 
2023-12-31T01:44:18.9428770Z Server: Docker Engine - Community
2023-12-31T01:44:18.9429360Z  Engine:
2023-12-31T01:44:18.9429736Z   Version:          24.0.7
2023-12-31T01:44:18.9430235Z   API version:      1.43 (minimum version 1.12)
2023-12-31T01:44:18.9430663Z   Go version:       go1.20.10
2023-12-31T01:44:18.9431059Z   Git commit:       311b9ff
2023-12-31T01:44:18.9431539Z   Built:            Thu Oct 26 09:07:41 2023
2023-12-31T01:44:18.9431998Z   OS/Arch:          linux/amd64
2023-12-31T01:44:18.9432391Z   Experimental:     false
2023-12-31T01:44:18.9432785Z  containerd:
2023-12-31T01:44:18.9433136Z   Version:          1.6.26
2023-12-31T01:44:18.9433592Z   GitCommit:        3dd1e886e55dd695541fdcd67420c2888645a495
2023-12-31T01:44:18.9434149Z  runc:
2023-12-31T01:44:18.9434464Z   Version:          1.1.10
2023-12-31T01:44:18.9434881Z   GitCommit:        v1.1.10-0-g18a0cb0
2023-12-31T01:44:18.9435409Z  docker-init:
2023-12-31T01:44:18.9436100Z   Version:          0.19.0
2023-12-31T01:44:18.9436470Z   GitCommit:        de40ad0
2023-12-31T01:44:18.9459809Z [command]/usr/bin/docker info
2023-12-31T01:44:18.9900386Z Client: Docker Engine - Community
2023-12-31T01:44:18.9901756Z  Version:    24.0.7
2023-12-31T01:44:18.9902720Z  Context:    default
2023-12-31T01:44:18.9903496Z  Debug Mode: false
2023-12-31T01:44:18.9904200Z  Plugins:
2023-12-31T01:44:18.9904765Z   buildx: Docker Buildx (Docker Inc.)
2023-12-31T01:44:18.9905489Z     Version:  v0.11.2
2023-12-31T01:44:18.9906475Z     Path:     /usr/libexec/docker/cli-plugins/docker-buildx
2023-12-31T01:44:18.9907348Z   compose: Docker Compose (Docker Inc.)
2023-12-31T01:44:18.9907966Z     Version:  v2.23.3
2023-12-31T01:44:18.9908491Z     Path:     /usr/libexec/docker/cli-plugins/docker-compose
2023-12-31T01:44:18.9909241Z 
2023-12-31T01:44:18.9909370Z Server:
2023-12-31T01:44:18.9909840Z  Containers: 0
2023-12-31T01:44:18.9910195Z   Running: 0
2023-12-31T01:44:18.9910589Z   Paused: 0
2023-12-31T01:44:18.9911195Z   Stopped: 0
2023-12-31T01:44:18.9911550Z  Images: 17
2023-12-31T01:44:18.9911893Z  Server Version: 24.0.7
2023-12-31T01:44:18.9912378Z  Storage Driver: overlay2
2023-12-31T01:44:18.9912755Z   Backing Filesystem: extfs
2023-12-31T01:44:18.9913185Z   Supports d_type: true
2023-12-31T01:44:18.9913660Z   Using metacopy: false
2023-12-31T01:44:18.9914059Z   Native Overlay Diff: false
2023-12-31T01:44:18.9914484Z   userxattr: false
2023-12-31T01:44:18.9914950Z  Logging Driver: json-file
2023-12-31T01:44:18.9915342Z  Cgroup Driver: cgroupfs
2023-12-31T01:44:18.9915899Z  Cgroup Version: 2
2023-12-31T01:44:18.9916537Z  Plugins:
2023-12-31T01:44:18.9916965Z   Volume: local
2023-12-31T01:44:18.9917388Z   Network: bridge host ipvlan macvlan null overlay
2023-12-31T01:44:18.9918377Z   Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog
2023-12-31T01:44:18.9919016Z  Swarm: inactive
2023-12-31T01:44:18.9919458Z  Runtimes: io.containerd.runc.v2 runc
2023-12-31T01:44:18.9920288Z  Default Runtime: runc
2023-12-31T01:44:18.9920864Z  Init Binary: docker-init
2023-12-31T01:44:18.9921551Z  containerd version: 3dd1e886e55dd695541fdcd67420c2888645a495
2023-12-31T01:44:18.9922253Z  runc version: v1.1.10-0-g18a0cb0
2023-12-31T01:44:18.9922679Z  init version: de40ad0
2023-12-31T01:44:18.9923172Z  Security Options:
2023-12-31T01:44:18.9923620Z   apparmor
2023-12-31T01:44:18.9923922Z   seccomp
2023-12-31T01:44:18.9924430Z    Profile: builtin
2023-12-31T01:44:18.9924827Z   cgroupns
2023-12-31T01:44:18.9925265Z  Kernel Version: 6.2.0-1018-azure
2023-12-31T01:44:18.9925927Z  Operating System: Ubuntu 22.04.3 LTS
2023-12-31T01:44:18.9926403Z  OSType: linux
2023-12-31T01:44:18.9926794Z  Architecture: x86_64
2023-12-31T01:44:18.9927289Z  CPUs: 4
2023-12-31T01:44:18.9927649Z  Total Memory: 15.61GiB
2023-12-31T01:44:18.9928105Z  Name: fv-az569-346
2023-12-31T01:44:18.9928741Z  ID: 475e7ed5-e838-42ee-a486-2e6cf60dc459
2023-12-31T01:44:18.9929287Z  Docker Root Dir: /var/lib/docker
2023-12-31T01:44:18.9929779Z  Debug Mode: false
2023-12-31T01:44:18.9930411Z  Username: githubactions
2023-12-31T01:44:18.9931022Z  Experimental: false
2023-12-31T01:44:18.9931693Z  Insecure Registries:
2023-12-31T01:44:18.9932178Z   127.0.0.0/8
2023-12-31T01:44:18.9932683Z  Live Restore Enabled: false
2023-12-31T01:44:18.9933115Z 
2023-12-31T01:44:18.9933975Z ##[endgroup]
2023-12-31T01:44:19.0515224Z ##[group]Buildx version
2023-12-31T01:44:19.0539246Z [command]/usr/bin/docker buildx version
2023-12-31T01:44:19.1164647Z github.com/docker/buildx v0.11.2 9872040
2023-12-31T01:44:19.1193280Z ##[endgroup]
2023-12-31T01:44:19.1202068Z ##[group]Creating a new builder instance
2023-12-31T01:44:19.1854241Z [command]/usr/bin/docker buildx create --name builder-dc796ddb-58f9-438f-95d4-769543ac7d40 --driver docker-container --buildkitd-flags --allow-insecure-entitlement security.insecure --allow-insecure-entitlement network.host --use
2023-12-31T01:44:19.2388530Z builder-dc796ddb-58f9-438f-95d4-769543ac7d40
2023-12-31T01:44:19.2418786Z ##[endgroup]
2023-12-31T01:44:19.2419642Z ##[group]Booting builder
2023-12-31T01:44:19.2468184Z [command]/usr/bin/docker buildx inspect --bootstrap --builder builder-dc796ddb-58f9-438f-95d4-769543ac7d40
2023-12-31T01:44:19.2984739Z #1 [internal] booting buildkit
2023-12-31T01:44:19.4122235Z #1 pulling image moby/buildkit:buildx-stable-1 0.1s done
2023-12-31T01:44:19.5628451Z #1 creating container buildx_buildkit_builder-dc796ddb-58f9-438f-95d4-769543ac7d400
2023-12-31T01:44:19.9166381Z #1 creating container buildx_buildkit_builder-dc796ddb-58f9-438f-95d4-769543ac7d400 0.5s done
2023-12-31T01:44:19.9168018Z #1 DONE 0.6s
2023-12-31T01:44:19.9958164Z Name:          builder-dc796ddb-58f9-438f-95d4-769543ac7d40
2023-12-31T01:44:19.9959090Z Driver:        docker-container
2023-12-31T01:44:19.9959606Z Last Activity: 2023-12-31 01:44:19 +0000 UTC
2023-12-31T01:44:19.9960061Z 
2023-12-31T01:44:19.9960177Z Nodes:
2023-12-31T01:44:19.9960662Z Name:      builder-dc796ddb-58f9-438f-95d4-769543ac7d400
2023-12-31T01:44:19.9961333Z Endpoint:  unix:///var/run/docker.sock
2023-12-31T01:44:19.9961786Z Status:    running
2023-12-31T01:44:19.9962506Z Flags:     --allow-insecure-entitlement security.insecure --allow-insecure-entitlement network.host
2023-12-31T01:44:19.9963349Z Buildkit:  v0.12.4
2023-12-31T01:44:19.9964377Z Platforms: linux/amd64, linux/amd64/v2, linux/amd64/v3, linux/arm64, linux/riscv64, linux/ppc64le, linux/s390x, linux/386, linux/mips64le, linux/mips64, linux/arm/v7, linux/arm/v6
2023-12-31T01:44:19.9965452Z Labels:
2023-12-31T01:44:19.9965940Z  org.mobyproject.buildkit.worker.executor:         oci
2023-12-31T01:44:19.9966617Z  org.mobyproject.buildkit.worker.hostname:         3f7f6bedb137
2023-12-31T01:44:19.9967269Z  org.mobyproject.buildkit.worker.network:          host
2023-12-31T01:44:19.9968046Z  org.mobyproject.buildkit.worker.oci.process-mode: sandbox
2023-12-31T01:44:19.9968726Z  org.mobyproject.buildkit.worker.selinux.enabled:  false
2023-12-31T01:44:19.9969719Z  org.mobyproject.buildkit.worker.snapshotter:      overlayfs
2023-12-31T01:44:19.9970408Z GC Policy rule#0:
2023-12-31T01:44:19.9970742Z  All:           false
2023-12-31T01:44:19.9971294Z  Filters:       type==source.local,type==exec.cachemount,type==source.git.checkout
2023-12-31T01:44:19.9971986Z  Keep Duration: 48h0m0s
2023-12-31T01:44:19.9972377Z  Keep Bytes:    488.3MiB
2023-12-31T01:44:19.9972806Z GC Policy rule#1:
2023-12-31T01:44:19.9973135Z  All:           false
2023-12-31T01:44:19.9973494Z  Keep Duration: 1440h0m0s
2023-12-31T01:44:19.9973952Z  Keep Bytes:    8.382GiB
2023-12-31T01:44:19.9974332Z GC Policy rule#2:
2023-12-31T01:44:19.9974632Z  All:        false
2023-12-31T01:44:19.9975029Z  Keep Bytes: 8.382GiB
2023-12-31T01:44:19.9975413Z GC Policy rule#3:
2023-12-31T01:44:19.9975888Z  All:        true
2023-12-31T01:44:19.9976567Z  Keep Bytes: 8.382GiB
2023-12-31T01:44:20.0000220Z ##[endgroup]
2023-12-31T01:44:20.1497483Z ##[group]Inspect builder
2023-12-31T01:44:20.1539282Z {
2023-12-31T01:44:20.1539784Z   "nodes": [
2023-12-31T01:44:20.1540453Z     {
2023-12-31T01:44:20.1542024Z       "name": "builder-dc796ddb-58f9-438f-95d4-769543ac7d400",
2023-12-31T01:44:20.1543103Z       "endpoint": "unix:///var/run/docker.sock",
2023-12-31T01:44:20.1543975Z       "status": "running",
2023-12-31T01:44:20.1545673Z       "buildkitd-flags": "--allow-insecure-entitlement security.insecure --allow-insecure-entitlement network.host",
2023-12-31T01:44:20.1547354Z       "buildkit": "v0.12.4",
2023-12-31T01:44:20.1549488Z       "platforms": "linux/amd64,linux/amd64/v2,linux/amd64/v3,linux/arm64,linux/riscv64,linux/ppc64le,linux/s390x,linux/386,linux/mips64le,linux/mips64,linux/arm/v7,linux/arm/v6",
2023-12-31T01:44:20.1551169Z       "labels": {
2023-12-31T01:44:20.1551961Z         "org.mobyproject.buildkit.worker.executor": "oci",
2023-12-31T01:44:20.1552983Z         "org.mobyproject.buildkit.worker.hostname": "3f7f6bedb137",
2023-12-31T01:44:20.1553657Z         "org.mobyproject.buildkit.worker.network": "host",
2023-12-31T01:44:20.1554493Z         "org.mobyproject.buildkit.worker.oci.process-mode": "sandbox",
2023-12-31T01:44:20.1555486Z         "org.mobyproject.buildkit.worker.selinux.enabled": "false",
2023-12-31T01:44:20.1556153Z         "org.mobyproject.buildkit.worker.snapshotter": "overlayfs"
2023-12-31T01:44:20.1556789Z       },
2023-12-31T01:44:20.1557064Z       "gcPolicy": [
2023-12-31T01:44:20.1557416Z         {
2023-12-31T01:44:20.1557797Z           "all": false,
2023-12-31T01:44:20.1558148Z           "filter": [
2023-12-31T01:44:20.1558583Z             "type==source.local",
2023-12-31T01:44:20.1558976Z             "type==exec.cachemount",
2023-12-31T01:44:20.1559404Z             "type==source.git.checkout"
2023-12-31T01:44:20.1559887Z           ],
2023-12-31T01:44:20.1560221Z           "keepDuration": "48h0m0s",
2023-12-31T01:44:20.1560591Z           "keepBytes": "488.3MiB"
2023-12-31T01:44:20.1561067Z         },
2023-12-31T01:44:20.1561364Z         {
2023-12-31T01:44:20.1561680Z           "all": false,
2023-12-31T01:44:20.1562344Z           "keepDuration": "1440h0m0s",
2023-12-31T01:44:20.1562762Z           "keepBytes": "8.382GiB"
2023-12-31T01:44:20.1563163Z         },
2023-12-31T01:44:20.1563540Z         {
2023-12-31T01:44:20.1563919Z           "all": false,
2023-12-31T01:44:20.1564280Z           "keepBytes": "8.382GiB"
2023-12-31T01:44:20.1564781Z         },
2023-12-31T01:44:20.1565092Z         {
2023-12-31T01:44:20.1565393Z           "all": true,
2023-12-31T01:44:20.1565808Z           "keepBytes": "8.382GiB"
2023-12-31T01:44:20.1566176Z         }
2023-12-31T01:44:20.1566468Z       ]
2023-12-31T01:44:20.1566817Z     }
2023-12-31T01:44:20.1567114Z   ],
2023-12-31T01:44:20.1567647Z   "name": "builder-dc796ddb-58f9-438f-95d4-769543ac7d40",
2023-12-31T01:44:20.1568190Z   "driver": "docker-container",
2023-12-31T01:44:20.1568666Z   "lastActivity": "2023-12-31T01:44:19.000Z"
2023-12-31T01:44:20.1569145Z }
2023-12-31T01:44:20.1569718Z ##[endgroup]
2023-12-31T01:44:20.1570333Z ##[group]BuildKit version
2023-12-31T01:44:20.1571040Z builder-dc796ddb-58f9-438f-95d4-769543ac7d400: v0.12.4
2023-12-31T01:44:20.1571750Z ##[endgroup]
2023-12-31T01:44:20.1703176Z ##[group]Run docker/login-action@v3
2023-12-31T01:44:20.1703625Z with:
2023-12-31T01:44:20.1703990Z   username: ***
2023-12-31T01:44:20.1704522Z   password: ***
2023-12-31T01:44:20.1704877Z   ecr: auto
2023-12-31T01:44:20.1705264Z   logout: true
2023-12-31T01:44:20.1705603Z ##[endgroup]
2023-12-31T01:44:20.2699625Z Logging into Docker Hub...
2023-12-31T01:44:20.3901051Z Login Succeeded!
2023-12-31T01:44:20.4006511Z ##[group]Run docker/metadata-action@v5
2023-12-31T01:44:20.4007054Z with:
2023-12-31T01:44:20.4007462Z   images: ***/admin
2023-12-31T01:44:20.4008043Z   flavor: latest=true

2023-12-31T01:44:20.4008509Z   tags: type=ref,event=tag

2023-12-31T01:44:20.4009042Z   context: workflow
2023-12-31T01:44:20.4009638Z   github-token: ***
2023-12-31T01:44:20.4010032Z ##[endgroup]
2023-12-31T01:44:20.8719609Z ##[group]Context info
2023-12-31T01:44:20.8720330Z eventName: push
2023-12-31T01:44:20.8721291Z sha: ead6f2c05cd62b03b70e34aae118f12c340f0737
2023-12-31T01:44:20.8722131Z ref: refs/heads/main
2023-12-31T01:44:20.8723519Z workflow: auto-tag-and-push-to-dockerhub
2023-12-31T01:44:20.8724410Z action: meta
2023-12-31T01:44:20.8725032Z actor: JwanKhalaf
2023-12-31T01:44:20.8725715Z runNumber: 10
2023-12-31T01:44:20.8726424Z runId: 7367637457
2023-12-31T01:44:20.8727405Z ##[endgroup]
2023-12-31T01:44:20.8729669Z ##[group]Processing images input
2023-12-31T01:44:20.8731283Z name=***/admin,enable=true
2023-12-31T01:44:20.8732543Z ##[endgroup]
2023-12-31T01:44:20.8741571Z ##[group]Processing tags input
2023-12-31T01:44:20.8742379Z type=ref,event=tag,enable=true,priority=600
2023-12-31T01:44:20.8743672Z ##[endgroup]
2023-12-31T01:44:20.8746281Z ##[group]Processing flavor input
2023-12-31T01:44:20.8747065Z latest=true
2023-12-31T01:44:20.8748758Z prefix=
2023-12-31T01:44:20.8749336Z prefixLatest=false
2023-12-31T01:44:20.8749930Z suffix=
2023-12-31T01:44:20.8750659Z suffixLatest=false
2023-12-31T01:44:20.8752200Z ##[endgroup]
2023-12-31T01:44:20.8808369Z ##[warning]No Docker image version has been generated. Check tags input.
2023-12-31T01:44:20.8816304Z ##[warning]No Docker tag has been generated. Check tags input.
2023-12-31T01:44:21.0565585Z ##[group]Docker labels
2023-12-31T01:44:21.0566937Z org.opencontainers.image.created=2023-12-31T01:44:20.874Z
2023-12-31T01:44:21.0568833Z org.opencontainers.image.description=The admin application for ***.com.
2023-12-31T01:44:21.0570467Z org.opencontainers.image.licenses=
2023-12-31T01:44:21.0572164Z org.opencontainers.image.revision=ead6f2c05cd62b03b70e34aae118f12c340f0737
2023-12-31T01:44:21.0574374Z org.opencontainers.image.source=https://github.com/JwanKhalaf/***.admin
2023-12-31T01:44:21.0575659Z org.opencontainers.image.title=***.admin
2023-12-31T01:44:21.0577014Z org.opencontainers.image.url=https://github.com/JwanKhalaf/***.admin
2023-12-31T01:44:21.0578174Z org.opencontainers.image.version=
2023-12-31T01:44:21.0579520Z ##[endgroup]
2023-12-31T01:44:21.0580501Z ##[group]Annotations
2023-12-31T01:44:21.0581604Z manifest:org.opencontainers.image.created=2023-12-31T01:44:20.874Z
2023-12-31T01:44:21.0584308Z manifest:org.opencontainers.image.description=The admin application for ***.com.
2023-12-31T01:44:21.0585599Z manifest:org.opencontainers.image.licenses=
2023-12-31T01:44:21.0586984Z manifest:org.opencontainers.image.revision=ead6f2c05cd62b03b70e34aae118f12c340f0737
2023-12-31T01:44:21.0588956Z manifest:org.opencontainers.image.source=https://github.com/JwanKhalaf/***.admin
2023-12-31T01:44:21.0590341Z manifest:org.opencontainers.image.title=***.admin
2023-12-31T01:44:21.0591855Z manifest:org.opencontainers.image.url=https://github.com/JwanKhalaf/***.admin
2023-12-31T01:44:21.0593052Z manifest:org.opencontainers.image.version=
2023-12-31T01:44:21.0594543Z ##[endgroup]
2023-12-31T01:44:21.0595575Z ##[group]JSON output
2023-12-31T01:44:21.0596337Z {
2023-12-31T01:44:21.0596831Z   "tags": [],
2023-12-31T01:44:21.0597411Z   "labels": {
2023-12-31T01:44:21.0598595Z     "org.opencontainers.image.created": "2023-12-31T01:44:20.874Z",
2023-12-31T01:44:21.0600057Z     "org.opencontainers.image.description": "The admin application for ***.com.",
2023-12-31T01:44:21.0601319Z     "org.opencontainers.image.licenses": "",
2023-12-31T01:44:21.0602705Z     "org.opencontainers.image.revision": "ead6f2c05cd62b03b70e34aae118f12c340f0737",
2023-12-31T01:44:21.0604308Z     "org.opencontainers.image.source": "https://github.com/JwanKhalaf/***.admin",
2023-12-31T01:44:21.0606155Z     "org.opencontainers.image.title": "***.admin",
2023-12-31T01:44:21.0607495Z     "org.opencontainers.image.url": "https://github.com/JwanKhalaf/***.admin",
2023-12-31T01:44:21.0608604Z     "org.opencontainers.image.version": ""
2023-12-31T01:44:21.0609526Z   },
2023-12-31T01:44:21.0610069Z   "annotations": [
2023-12-31T01:44:21.0611021Z     "manifest:org.opencontainers.image.created=2023-12-31T01:44:20.874Z",
2023-12-31T01:44:21.0612480Z     "manifest:org.opencontainers.image.description=The admin application for ***.com.",
2023-12-31T01:44:21.0613593Z     "manifest:org.opencontainers.image.licenses=",
2023-12-31T01:44:21.0614727Z     "manifest:org.opencontainers.image.revision=ead6f2c05cd62b03b70e34aae118f12c340f0737",
2023-12-31T01:44:21.0616277Z     "manifest:org.opencontainers.image.source=https://github.com/JwanKhalaf/***.admin",
2023-12-31T01:44:21.0617490Z     "manifest:org.opencontainers.image.title=***.admin",
2023-12-31T01:44:21.0618721Z     "manifest:org.opencontainers.image.url=https://github.com/JwanKhalaf/***.admin",
2023-12-31T01:44:21.0619945Z     "manifest:org.opencontainers.image.version="
2023-12-31T01:44:21.0620700Z   ]
2023-12-31T01:44:21.0621233Z }
2023-12-31T01:44:21.0622086Z ##[endgroup]
2023-12-31T01:44:21.0623030Z ##[group]Bake file definition (tags)
2023-12-31T01:44:21.0623663Z {
2023-12-31T01:44:21.0624163Z   "target": {
2023-12-31T01:44:21.0624835Z     "docker-metadata-action": {
2023-12-31T01:44:21.0625491Z       "tags": [],
2023-12-31T01:44:21.0626000Z       "args": {
2023-12-31T01:44:21.0626975Z         "DOCKER_META_IMAGES": "***/admin"
2023-12-31T01:44:21.0627672Z       }
2023-12-31T01:44:21.0628875Z     }
2023-12-31T01:44:21.0629433Z   }
2023-12-31T01:44:21.0629870Z }
2023-12-31T01:44:21.0630750Z ##[endgroup]
2023-12-31T01:44:21.0631708Z ##[group]Bake file definition (labels)
2023-12-31T01:44:21.0632305Z {
2023-12-31T01:44:21.0632874Z   "target": {
2023-12-31T01:44:21.0633495Z     "docker-metadata-action": {
2023-12-31T01:44:21.0634240Z       "labels": {
2023-12-31T01:44:21.0635066Z         "org.opencontainers.image.created": "2023-12-31T01:44:20.874Z",
2023-12-31T01:44:21.0636369Z         "org.opencontainers.image.description": "The admin application for ***.com.",
2023-12-31T01:44:21.0637608Z         "org.opencontainers.image.licenses": "",
2023-12-31T01:44:21.0638776Z         "org.opencontainers.image.revision": "ead6f2c05cd62b03b70e34aae118f12c340f0737",
2023-12-31T01:44:21.0640203Z         "org.opencontainers.image.source": "https://github.com/JwanKhalaf/***.admin",
2023-12-31T01:44:21.0641482Z         "org.opencontainers.image.title": "***.admin",
2023-12-31T01:44:21.0642609Z         "org.opencontainers.image.url": "https://github.com/JwanKhalaf/***.admin",
2023-12-31T01:44:21.0643687Z         "org.opencontainers.image.version": ""
2023-12-31T01:44:21.0644489Z       }
2023-12-31T01:44:21.0644889Z     }
2023-12-31T01:44:21.0645355Z   }
2023-12-31T01:44:21.0645874Z }
2023-12-31T01:44:21.0646694Z ##[endgroup]
2023-12-31T01:44:21.0647683Z ##[group]Bake file definition (annotations)
2023-12-31T01:44:21.0648397Z {
2023-12-31T01:44:21.0648949Z   "target": {
2023-12-31T01:44:21.0649565Z     "docker-metadata-action": {
2023-12-31T01:44:21.0650231Z       "annotations": [
2023-12-31T01:44:21.0651209Z         "manifest:org.opencontainers.image.created=2023-12-31T01:44:20.874Z",
2023-12-31T01:44:21.0652595Z         "manifest:org.opencontainers.image.description=The admin application for ***.com.",
2023-12-31T01:44:21.0653795Z         "manifest:org.opencontainers.image.licenses=",
2023-12-31T01:44:21.0655083Z         "manifest:org.opencontainers.image.revision=ead6f2c05cd62b03b70e34aae118f12c340f0737",
2023-12-31T01:44:21.0656616Z         "manifest:org.opencontainers.image.source=https://github.com/JwanKhalaf/***.admin",
2023-12-31T01:44:21.0657870Z         "manifest:org.opencontainers.image.title=***.admin",
2023-12-31T01:44:21.0659217Z         "manifest:org.opencontainers.image.url=https://github.com/JwanKhalaf/***.admin",
2023-12-31T01:44:21.0660664Z         "manifest:org.opencontainers.image.version="
2023-12-31T01:44:21.0661458Z       ]
2023-12-31T01:44:21.0661737Z     }
2023-12-31T01:44:21.0662174Z   }
2023-12-31T01:44:21.0662769Z }
2023-12-31T01:44:21.0663561Z ##[endgroup]
2023-12-31T01:44:21.0826865Z ##[group]Run docker/build-push-action@v5
2023-12-31T01:44:21.0827425Z with:
2023-12-31T01:44:21.0827720Z   context: .
2023-12-31T01:44:21.0828046Z   file: ./Dockerfile
2023-12-31T01:44:21.0828452Z   push: true
2023-12-31T01:44:21.0831156Z   labels: org.opencontainers.image.created=2023-12-31T01:44:20.874Z
org.opencontainers.image.description=The admin application for ***.com.
org.opencontainers.image.licenses=
org.opencontainers.image.revision=ead6f2c05cd62b03b70e34aae118f12c340f0737
org.opencontainers.image.source=https://github.com/JwanKhalaf/***.admin
org.opencontainers.image.title=***.admin
org.opencontainers.image.url=https://github.com/JwanKhalaf/***.admin
org.opencontainers.image.version=
2023-12-31T01:44:21.0833608Z   load: false
2023-12-31T01:44:21.0833927Z   no-cache: false
2023-12-31T01:44:21.0834258Z   pull: false
2023-12-31T01:44:21.0834774Z   github-token: ***
2023-12-31T01:44:21.0835146Z env:
2023-12-31T01:44:21.0835470Z   DOCKER_METADATA_OUTPUT_VERSION: 
2023-12-31T01:44:21.0836067Z   DOCKER_METADATA_OUTPUT_TAGS: 
2023-12-31T01:44:21.0838597Z   DOCKER_METADATA_OUTPUT_LABELS: org.opencontainers.image.created=2023-12-31T01:44:20.874Z
org.opencontainers.image.description=The admin application for ***.com.
org.opencontainers.image.licenses=
org.opencontainers.image.revision=ead6f2c05cd62b03b70e34aae118f12c340f0737
org.opencontainers.image.source=https://github.com/JwanKhalaf/***.admin
org.opencontainers.image.title=***.admin
org.opencontainers.image.url=https://github.com/JwanKhalaf/***.admin
org.opencontainers.image.version=
2023-12-31T01:44:21.0843785Z   DOCKER_METADATA_OUTPUT_ANNOTATIONS: manifest:org.opencontainers.image.created=2023-12-31T01:44:20.874Z
manifest:org.opencontainers.image.description=The admin application for ***.com.
manifest:org.opencontainers.image.licenses=
manifest:org.opencontainers.image.revision=ead6f2c05cd62b03b70e34aae118f12c340f0737
manifest:org.opencontainers.image.source=https://github.com/JwanKhalaf/***.admin
manifest:org.opencontainers.image.title=***.admin
manifest:org.opencontainers.image.url=https://github.com/JwanKhalaf/***.admin
manifest:org.opencontainers.image.version=
2023-12-31T01:44:21.0851165Z   DOCKER_METADATA_OUTPUT_JSON: {"tags":[],"labels":{"org.opencontainers.image.created":"2023-12-31T01:44:20.874Z","org.opencontainers.image.description":"The admin application for ***.com.","org.opencontainers.image.licenses":"","org.opencontainers.image.revision":"ead6f2c05cd62b03b70e34aae118f12c340f0737","org.opencontainers.image.source":"https://github.com/JwanKhalaf/***.admin","org.opencontainers.image.title":"***.admin","org.opencontainers.image.url":"https://github.com/JwanKhalaf/***.admin","org.opencontainers.image.version":""},"annotations":["manifest:org.opencontainers.image.created=2023-12-31T01:44:20.874Z","manifest:org.opencontainers.image.description=The admin application for ***.com.","manifest:org.opencontainers.image.licenses=","manifest:org.opencontainers.image.revision=ead6f2c05cd62b03b70e34aae118f12c340f0737","manifest:org.opencontainers.image.source=https://github.com/JwanKhalaf/***.admin","manifest:org.opencontainers.image.title=***.admin","manifest:org.opencontainers.image.url=https://github.com/JwanKhalaf/***.admin","manifest:org.opencontainers.image.version="]}
2023-12-31T01:44:21.0856756Z   DOCKER_METADATA_OUTPUT_BAKE_FILE_TAGS: /home/runner/work/_temp/docker-actions-toolkit-Zdl3d1/docker-metadata-action-bake-tags.json
2023-12-31T01:44:21.0858041Z   DOCKER_METADATA_OUTPUT_BAKE_FILE_LABELS: /home/runner/work/_temp/docker-actions-toolkit-Zdl3d1/docker-metadata-action-bake-labels.json
2023-12-31T01:44:21.0859429Z   DOCKER_METADATA_OUTPUT_BAKE_FILE_ANNOTATIONS: /home/runner/work/_temp/docker-actions-toolkit-Zdl3d1/docker-metadata-action-bake-annotations.json
2023-12-31T01:44:21.0860696Z   DOCKER_METADATA_OUTPUT_BAKE_FILE: /home/runner/work/_temp/docker-actions-toolkit-Zdl3d1/docker-metadata-action-bake.json
2023-12-31T01:44:21.0861552Z ##[endgroup]
2023-12-31T01:44:21.2503587Z ##[group]GitHub Actions runtime token ACs
2023-12-31T01:44:21.2516918Z refs/heads/main: read/write
2023-12-31T01:44:21.2518372Z ##[endgroup]
2023-12-31T01:44:21.2519546Z ##[group]Docker info
2023-12-31T01:44:21.2580791Z [command]/usr/bin/docker version
2023-12-31T01:44:21.2782356Z Client: Docker Engine - Community
2023-12-31T01:44:21.2784957Z  Version:           24.0.7
2023-12-31T01:44:21.2785677Z  API version:       1.43
2023-12-31T01:44:21.2786194Z  Go version:        go1.20.10
2023-12-31T01:44:21.2786724Z  Git commit:        afdd53b
2023-12-31T01:44:21.2787153Z  Built:             Thu Oct 26 09:07:41 2023
2023-12-31T01:44:21.2787640Z  OS/Arch:           linux/amd64
2023-12-31T01:44:21.2788134Z  Context:           default
2023-12-31T01:44:21.2788386Z 
2023-12-31T01:44:21.2788857Z Server: Docker Engine - Community
2023-12-31T01:44:21.2789417Z  Engine:
2023-12-31T01:44:21.2789738Z   Version:          24.0.7
2023-12-31T01:44:21.2790184Z   API version:      1.43 (minimum version 1.12)
2023-12-31T01:44:21.2790745Z   Go version:       go1.20.10
2023-12-31T01:44:21.2791192Z   Git commit:       311b9ff
2023-12-31T01:44:21.2791621Z   Built:            Thu Oct 26 09:07:41 2023
2023-12-31T01:44:21.2792138Z   OS/Arch:          linux/amd64
2023-12-31T01:44:21.2792870Z   Experimental:     false
2023-12-31T01:44:21.2793561Z  containerd:
2023-12-31T01:44:21.2794365Z   Version:          1.6.26
2023-12-31T01:44:21.2795638Z   GitCommit:        3dd1e886e55dd695541fdcd67420c2888645a495
2023-12-31T01:44:21.2796575Z  runc:
2023-12-31T01:44:21.2797365Z   Version:          1.1.10
2023-12-31T01:44:21.2798235Z   GitCommit:        v1.1.10-0-g18a0cb0
2023-12-31T01:44:21.2799039Z  docker-init:
2023-12-31T01:44:21.2799729Z   Version:          0.19.0
2023-12-31T01:44:21.2800388Z   GitCommit:        de40ad0
2023-12-31T01:44:21.2829970Z [command]/usr/bin/docker info
2023-12-31T01:44:21.3322284Z Client: Docker Engine - Community
2023-12-31T01:44:21.3323655Z  Version:    24.0.7
2023-12-31T01:44:21.3324592Z  Context:    default
2023-12-31T01:44:21.3325442Z  Debug Mode: false
2023-12-31T01:44:21.3326033Z  Plugins:
2023-12-31T01:44:21.3326537Z   buildx: Docker Buildx (Docker Inc.)
2023-12-31T01:44:21.3327020Z     Version:  v0.11.2
2023-12-31T01:44:21.3327575Z     Path:     /usr/libexec/docker/cli-plugins/docker-buildx
2023-12-31T01:44:21.3328121Z   compose: Docker Compose (Docker Inc.)
2023-12-31T01:44:21.3328620Z     Version:  v2.23.3
2023-12-31T01:44:21.3329440Z     Path:     /usr/libexec/docker/cli-plugins/docker-compose
2023-12-31T01:44:21.3329799Z 
2023-12-31T01:44:21.3329910Z Server:
2023-12-31T01:44:21.3330300Z  Containers: 1
2023-12-31T01:44:21.3330641Z   Running: 1
2023-12-31T01:44:21.3330948Z   Paused: 0
2023-12-31T01:44:21.3331364Z   Stopped: 0
2023-12-31T01:44:21.3331641Z  Images: 17
2023-12-31T01:44:21.3331954Z  Server Version: 24.0.7
2023-12-31T01:44:21.3332402Z  Storage Driver: overlay2
2023-12-31T01:44:21.3332785Z   Backing Filesystem: extfs
2023-12-31T01:44:21.3333236Z   Supports d_type: true
2023-12-31T01:44:21.3333578Z   Using metacopy: false
2023-12-31T01:44:21.3333943Z   Native Overlay Diff: false
2023-12-31T01:44:21.3334378Z   userxattr: false
2023-12-31T01:44:21.3334803Z  Logging Driver: json-file
2023-12-31T01:44:21.3335145Z  Cgroup Driver: cgroupfs
2023-12-31T01:44:21.3335587Z  Cgroup Version: 2
2023-12-31T01:44:21.3335917Z  Plugins:
2023-12-31T01:44:21.3336222Z   Volume: local
2023-12-31T01:44:21.3336691Z   Network: bridge host ipvlan macvlan null overlay
2023-12-31T01:44:21.3337709Z   Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog
2023-12-31T01:44:21.3338441Z  Swarm: inactive
2023-12-31T01:44:21.3338933Z  Runtimes: io.containerd.runc.v2 runc
2023-12-31T01:44:21.3339426Z  Default Runtime: runc
2023-12-31T01:44:21.3339850Z  Init Binary: docker-init
2023-12-31T01:44:21.3340364Z  containerd version: 3dd1e886e55dd695541fdcd67420c2888645a495
2023-12-31T01:44:21.3340932Z  runc version: v1.1.10-0-g18a0cb0
2023-12-31T01:44:21.3341341Z  init version: de40ad0
2023-12-31T01:44:21.3341764Z  Security Options:
2023-12-31T01:44:21.3342091Z   apparmor
2023-12-31T01:44:21.3342682Z   seccomp
2023-12-31T01:44:21.3343075Z    Profile: builtin
2023-12-31T01:44:21.3343426Z   cgroupns
2023-12-31T01:44:21.3343855Z  Kernel Version: 6.2.0-1018-azure
2023-12-31T01:44:21.3344370Z  Operating System: Ubuntu 22.04.3 LTS
2023-12-31T01:44:21.3345058Z  OSType: linux
2023-12-31T01:44:21.3345694Z  Architecture: x86_64
2023-12-31T01:44:21.3346262Z  CPUs: 4
2023-12-31T01:44:21.3346601Z  Total Memory: 15.61GiB
2023-12-31T01:44:21.3347063Z  Name: fv-az569-346
2023-12-31T01:44:21.3347511Z  ID: 475e7ed5-e838-42ee-a486-2e6cf60dc459
2023-12-31T01:44:21.3347947Z  Docker Root Dir: /var/lib/docker
2023-12-31T01:44:21.3348400Z  Debug Mode: false
2023-12-31T01:44:21.3349072Z  Username: ***
2023-12-31T01:44:21.3349385Z  Experimental: false
2023-12-31T01:44:21.3349962Z  Insecure Registries:
2023-12-31T01:44:21.3350525Z   127.0.0.0/8
2023-12-31T01:44:21.3351167Z  Live Restore Enabled: false
2023-12-31T01:44:21.3351540Z 
2023-12-31T01:44:21.3352107Z ##[endgroup]
2023-12-31T01:44:21.3352760Z ##[group]Proxy configuration
2023-12-31T01:44:21.3353193Z No proxy configuration found
2023-12-31T01:44:21.3354051Z ##[endgroup]
2023-12-31T01:44:21.3951824Z ##[group]Buildx version
2023-12-31T01:44:21.3974702Z [command]/usr/bin/docker buildx version
2023-12-31T01:44:21.4434418Z github.com/docker/buildx v0.11.2 9872040
2023-12-31T01:44:21.4463226Z ##[endgroup]
2023-12-31T01:44:21.6434099Z [command]/usr/bin/docker buildx build --file ./Dockerfile --iidfile /home/runner/work/_temp/docker-actions-toolkit-serGFD/iidfile --label org.opencontainers.image.created=2023-12-31T01:44:20.874Z --label org.opencontainers.image.description=The admin application for ***.com. --label org.opencontainers.image.licenses= --label org.opencontainers.image.revision=ead6f2c05cd62b03b70e34aae118f12c340f0737 --label org.opencontainers.image.source=https://github.com/JwanKhalaf/***.admin --label org.opencontainers.image.title=***.admin --label org.opencontainers.image.url=https://github.com/JwanKhalaf/***.admin --label org.opencontainers.image.version= --provenance mode=max,builder-id=https://github.com/JwanKhalaf/***.admin/actions/runs/7367637457 --metadata-file /home/runner/work/_temp/docker-actions-toolkit-serGFD/metadata-file --push .
2023-12-31T01:44:21.7737767Z ERROR: tag is needed when pushing to registry
2023-12-31T01:44:21.7784008Z ##[error]buildx failed with: ERROR: tag is needed when pushing to registry
2023-12-31T01:44:21.7933556Z Post job cleanup.
2023-12-31T01:44:21.9518503Z ##[group]Removing temp folder /home/runner/work/_temp/docker-actions-toolkit-serGFD
2023-12-31T01:44:21.9529662Z ##[endgroup]
2023-12-31T01:44:21.9649036Z Post job cleanup.
2023-12-31T01:44:22.0732828Z [command]/usr/bin/docker logout 
2023-12-31T01:44:22.0873822Z Removing login credentials for https://index.docker.io/v1/
2023-12-31T01:44:22.1007204Z Post job cleanup.
2023-12-31T01:44:22.2353336Z ##[group]Removing builder
2023-12-31T01:44:22.3671330Z [command]/usr/bin/docker buildx rm builder-dc796ddb-58f9-438f-95d4-769543ac7d40
2023-12-31T01:44:22.5343115Z builder-dc796ddb-58f9-438f-95d4-769543ac7d40 removed
2023-12-31T01:44:22.5374844Z ##[endgroup]
2023-12-31T01:44:22.5375924Z ##[group]Cleaning up certificates
2023-12-31T01:44:22.5382089Z ##[endgroup]
2023-12-31T01:44:22.5510847Z Post job cleanup.
2023-12-31T01:44:22.6248294Z [command]/usr/bin/git version
2023-12-31T01:44:22.6288525Z git version 2.43.0
2023-12-31T01:44:22.6329003Z Temporarily overriding HOME='/home/runner/work/_temp/edab9f2f-18d9-40c9-b5f8-03306f7af16f' before making global git config changes
2023-12-31T01:44:22.6330841Z Adding repository directory to the temporary git global config as a safe directory
2023-12-31T01:44:22.6334804Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/***.admin/***.admin
2023-12-31T01:44:22.6368579Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
2023-12-31T01:44:22.6401842Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :"
2023-12-31T01:44:22.6644799Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
2023-12-31T01:44:22.6667625Z http.https://github.com/.extraheader
2023-12-31T01:44:22.6680540Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader
2023-12-31T01:44:22.6711715Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :"
2023-12-31T01:44:22.7325328Z Cleaning up orphan processes

BuildKit logs

No response

Additional info

No response

crazy-max commented 9 months ago
          tags: |
            type=ref,event=tag

You're only setting a type tag event and therefore will not generate any tag with current workflow event that is only push to main branch:

on:
  push:
    branches: [main]