From b37e981979d03d44511722dde19fe1dd037aa038 Mon Sep 17 00:00:00 2001 From: Christoph Bessei <28066477+christoph-bessei@users.noreply.github.com> Date: Fri, 4 Oct 2024 19:49:47 +0200 Subject: [PATCH] Improve code comments --- .github/workflows/per-commit_publish-image.yaml | 3 ++- .github/workflows/production_publish-image.yaml | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/per-commit_publish-image.yaml b/.github/workflows/per-commit_publish-image.yaml index 8205930..7bda280 100644 --- a/.github/workflows/per-commit_publish-image.yaml +++ b/.github/workflows/per-commit_publish-image.yaml @@ -23,7 +23,8 @@ jobs: docker pull caddy:2-alpine docker tag caddy:2-alpine ${{ vars.CI_REGISTRY_IMAGE }}:${{ github.sha }}_v2-alpine docker push ${{ vars.CI_REGISTRY_IMAGE }}:${{ github.sha }}_v2-alpine - # Build a customer Caddy docker image with Cloudflare DNS support and push it to Quay.io + # Build a custom Caddy docker image with the modules listed below & push it to Quay.io + # * dns.providers.cloudflare: https://github.com/caddy-dns/cloudflare v2-alpine_cloudflare: runs-on: ubuntu-latest steps: diff --git a/.github/workflows/production_publish-image.yaml b/.github/workflows/production_publish-image.yaml index 692e910..accf0b9 100644 --- a/.github/workflows/production_publish-image.yaml +++ b/.github/workflows/production_publish-image.yaml @@ -24,7 +24,8 @@ jobs: docker pull caddy:2-alpine docker tag caddy:2-alpine ${{ vars.CI_REGISTRY_IMAGE }}:v2-alpine docker push ${{ vars.CI_REGISTRY_IMAGE }}:v2-alpine - # Build a customer Caddy docker image with Cloudflare DNS support and push it to Quay.io + # Build a custom Caddy docker image with the modules listed below & push it to Quay.io + # * dns.providers.cloudflare: https://github.com/caddy-dns/cloudflare v2-alpine_cloudflare: runs-on: ubuntu-latest environment: Production