update workflow
Some checks failed
ci / docker (push) Failing after 3s

This commit is contained in:
s83 2025-02-01 15:08:19 +01:00
parent 0248346df2
commit 01f1d47f5d

View File

@ -15,36 +15,62 @@ jobs:
volumes: volumes:
- /opt/.runner/node_modules:/cache - /opt/.runner/node_modules:/cache
steps: steps:
- name: Checkout - name: Set up Docker Context for Buildx
uses: actions/checkout@v4 id: buildx-context
- name: Docker meta run: |
id: meta export DOCKER_HOST=tcp://docker:2376/
uses: docker/metadata-action@v5 export DOCKER_TLS_CERTDIR="/certs"
with: export DOCKER_TLS_VERIFY=1
# list of Docker images to use as base name for tags export DOCKER_CERT_PATH="/certs/client"
images: | docker context create builders
${{ secrets.DOCKERHUB_USERNAME }}/brudi-rclone # https://github.com/docker/setup-buildx-action
# generate Docker tags based on the following events/attributes # https://docs.docker.com/engine/reference/commandline/cli/#environment-variables
tags: |
type=raw,value=latest,enable={{is_default_branch}}
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
- name: Setup Docker Buildx - name: Setup Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3 uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
if: github.event_name != 'pull_request'
uses: docker/login-action@v3
with: with:
username: ${{ secrets.DOCKERHUB_USERNAME }} # buildkitd-flags: --debug
password: ${{ secrets.DOCKERHUB_TOKEN }} endpoint: builders
- name: Set up QEMU env:
uses: docker/setup-qemu-action@v3 DOCKER_HOST: "tcp://docker:2376/"
- name: Build and push DOCKER_TLS_CERTDIR: "/certs"
uses: docker/build-push-action@v5 DOCKER_TLS_VERIFY: 1
with: DOCKER_CERT_PATH: "/certs/client"
context: . #
platforms: linux/amd64,linux/arm64 # Debug
push: ${{ github.event_name != 'pull_request' }} #
tags: ${{ steps.meta.outputs.tags }} - name: Available platforms
labels: ${{ steps.meta.outputs.labels }} run: echo ${{ steps.buildx.outputs.platforms }}
# - name: Checkout
# uses: actions/checkout@v4
# - name: Docker meta
# id: meta
# uses: docker/metadata-action@v5
# with:
# # list of Docker images to use as base name for tags
# images: |
# ${{ secrets.DOCKERHUB_USERNAME }}/brudi-rclone
# # generate Docker tags based on the following events/attributes
# tags: |
# type=raw,value=latest,enable={{is_default_branch}}
# type=semver,pattern={{version}}
# type=semver,pattern={{major}}.{{minor}}
# type=semver,pattern={{major}}
# - name: Set up Docker Buildx
# uses: docker/setup-buildx-action@v3
# - name: Login to Docker Hub
# if: github.event_name != 'pull_request'
# uses: docker/login-action@v3
# with:
# username: ${{ secrets.DOCKERHUB_USERNAME }}
# password: ${{ secrets.DOCKERHUB_TOKEN }}
# - name: Set up QEMU
# uses: docker/setup-qemu-action@v3
# - name: Build and push
# uses: docker/build-push-action@v5
# with:
# context: .
# platforms: linux/amd64,linux/arm64
# push: ${{ github.event_name != 'pull_request' }}
# tags: ${{ steps.meta.outputs.tags }}
# labels: ${{ steps.meta.outputs.labels }}