Enhancement: Bump kubectl 1.33 to 1.33.9 #651
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: ci-master-pr | |
| on: | |
| push: | |
| branches: | |
| - master | |
| tags: | |
| - '**' | |
| pull_request: | |
| branches: | |
| - master | |
| merge_group: | |
| jobs: | |
| test-nogitdiff: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: mcr.microsoft.com/powershell:lts-7.2-alpine-3.17 | |
| steps: | |
| - run: | | |
| apk add --no-cache git | |
| - uses: actions/checkout@v4 | |
| - name: Ignore git permissions | |
| run: | | |
| git config --global --add safe.directory "$( pwd )" | |
| - name: Generate variants | |
| run: | | |
| pwsh -Command ' | |
| $ErrorActionPreference = "Stop" | |
| Install-Module -Name Generate-DockerImageVariants -Force -Scope CurrentUser -Verbose | |
| Generate-DockerImageVariants . | |
| ' | |
| - name: Test - no git diff | |
| run: | | |
| git diff --exit-code | |
| build-1-35-1: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Display system info (linux) | |
| run: | | |
| set -e | |
| hostname | |
| whoami | |
| cat /etc/*release | |
| lscpu | |
| free | |
| df -h | |
| pwd | |
| docker info | |
| docker version | |
| # See: https://github.com/docker/build-push-action/blob/v2.6.1/docs/advanced/cache.md#github-cache | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v3 | |
| - name: Set up Docker Buildx | |
| id: buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Cache Docker layers | |
| uses: actions/cache@v4 | |
| with: | |
| path: /tmp/.buildx-cache | |
| key: ${{ runner.os }}-buildx-1.35.1-${{ github.sha }} | |
| restore-keys: | | |
| ${{ runner.os }}-buildx-1.35.1- | |
| ${{ runner.os }}-buildx- | |
| - name: Login to Docker Hub registry | |
| # Run on master and tags | |
| if: github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/') | |
| uses: docker/login-action@v3 | |
| with: | |
| username: ${{ secrets.DOCKERHUB_REGISTRY_USER }} | |
| password: ${{ secrets.DOCKERHUB_REGISTRY_PASSWORD }} | |
| # This step generates the docker tags | |
| - name: Prepare | |
| id: prep-1-35-1 | |
| run: | | |
| set -e | |
| # Get ref, i.e. <branch_name> from refs/heads/<branch_name>, or <tag-name> from refs/tags/<tag_name>. E.g. 'master' or 'v0.0.0' | |
| REF=$( echo "${GITHUB_REF}" | rev | cut -d '/' -f 1 | rev ) | |
| # Get short commit hash E.g. 'abc0123' | |
| SHA=$( echo "${GITHUB_SHA}" | cut -c1-7 ) | |
| # Generate docker image tags | |
| # E.g. 'v0.0.0-<variant>' and 'v0.0.0-abc0123-<variant>' | |
| # E.g. 'master-<variant>' and 'master-abc0123-<variant>' | |
| VARIANT="1.35.1" | |
| REF_VARIANT="${REF}-${VARIANT}" | |
| REF_SHA_VARIANT="${REF}-${SHA}-${VARIANT}" | |
| # Pass variables to next step | |
| echo "VARIANT_BUILD_DIR=$VARIANT_BUILD_DIR" >> $GITHUB_OUTPUT | |
| echo "VARIANT=$VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_VARIANT=$REF_VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_SHA_VARIANT=$REF_SHA_VARIANT" >> $GITHUB_OUTPUT | |
| - name: 1.35.1 - Build (PRs) | |
| # Run only on pull requests | |
| if: github.event_name == 'pull_request' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.35.1 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: false | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-35-1.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-35-1.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.35.1 - Build and push (master) | |
| # Run only on master | |
| if: github.ref == 'refs/heads/master' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.35.1 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-35-1.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-35-1.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.35.1 - Build and push (release) | |
| if: startsWith(github.ref, 'refs/tags/') | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.35.1 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-35-1.outputs.VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-35-1.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-35-1.outputs.REF_SHA_VARIANT }} | |
| ${{ github.repository }}:latest | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| # This step generates the docker tags | |
| - name: Prepare | |
| id: prep-1-35-1-envsubst-git-jq-kustomize-sops-ssh-yq | |
| run: | | |
| set -e | |
| # Get ref, i.e. <branch_name> from refs/heads/<branch_name>, or <tag-name> from refs/tags/<tag_name>. E.g. 'master' or 'v0.0.0' | |
| REF=$( echo "${GITHUB_REF}" | rev | cut -d '/' -f 1 | rev ) | |
| # Get short commit hash E.g. 'abc0123' | |
| SHA=$( echo "${GITHUB_SHA}" | cut -c1-7 ) | |
| # Generate docker image tags | |
| # E.g. 'v0.0.0-<variant>' and 'v0.0.0-abc0123-<variant>' | |
| # E.g. 'master-<variant>' and 'master-abc0123-<variant>' | |
| VARIANT="1.35.1-envsubst-git-jq-kustomize-sops-ssh-yq" | |
| REF_VARIANT="${REF}-${VARIANT}" | |
| REF_SHA_VARIANT="${REF}-${SHA}-${VARIANT}" | |
| # Pass variables to next step | |
| echo "VARIANT_BUILD_DIR=$VARIANT_BUILD_DIR" >> $GITHUB_OUTPUT | |
| echo "VARIANT=$VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_VARIANT=$REF_VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_SHA_VARIANT=$REF_SHA_VARIANT" >> $GITHUB_OUTPUT | |
| - name: 1.35.1-envsubst-git-jq-kustomize-sops-ssh-yq - Build (PRs) | |
| # Run only on pull requests | |
| if: github.event_name == 'pull_request' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.35.1-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: false | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-35-1-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-35-1-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.35.1-envsubst-git-jq-kustomize-sops-ssh-yq - Build and push (master) | |
| # Run only on master | |
| if: github.ref == 'refs/heads/master' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.35.1-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-35-1-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-35-1-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.35.1-envsubst-git-jq-kustomize-sops-ssh-yq - Build and push (release) | |
| if: startsWith(github.ref, 'refs/tags/') | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.35.1-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-35-1-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-35-1-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-35-1-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| # Temp fix | |
| # https://github.com/docker/build-push-action/issues/252 | |
| # https://github.com/moby/buildkit/issues/1896 | |
| - name: Move cache | |
| run: | | |
| rm -rf /tmp/.buildx-cache | |
| mv /tmp/.buildx-cache-new /tmp/.buildx-cache | |
| build-1-34-4: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Display system info (linux) | |
| run: | | |
| set -e | |
| hostname | |
| whoami | |
| cat /etc/*release | |
| lscpu | |
| free | |
| df -h | |
| pwd | |
| docker info | |
| docker version | |
| # See: https://github.com/docker/build-push-action/blob/v2.6.1/docs/advanced/cache.md#github-cache | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v3 | |
| - name: Set up Docker Buildx | |
| id: buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Cache Docker layers | |
| uses: actions/cache@v4 | |
| with: | |
| path: /tmp/.buildx-cache | |
| key: ${{ runner.os }}-buildx-1.34.4-${{ github.sha }} | |
| restore-keys: | | |
| ${{ runner.os }}-buildx-1.34.4- | |
| ${{ runner.os }}-buildx- | |
| - name: Login to Docker Hub registry | |
| # Run on master and tags | |
| if: github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/') | |
| uses: docker/login-action@v3 | |
| with: | |
| username: ${{ secrets.DOCKERHUB_REGISTRY_USER }} | |
| password: ${{ secrets.DOCKERHUB_REGISTRY_PASSWORD }} | |
| # This step generates the docker tags | |
| - name: Prepare | |
| id: prep-1-34-4 | |
| run: | | |
| set -e | |
| # Get ref, i.e. <branch_name> from refs/heads/<branch_name>, or <tag-name> from refs/tags/<tag_name>. E.g. 'master' or 'v0.0.0' | |
| REF=$( echo "${GITHUB_REF}" | rev | cut -d '/' -f 1 | rev ) | |
| # Get short commit hash E.g. 'abc0123' | |
| SHA=$( echo "${GITHUB_SHA}" | cut -c1-7 ) | |
| # Generate docker image tags | |
| # E.g. 'v0.0.0-<variant>' and 'v0.0.0-abc0123-<variant>' | |
| # E.g. 'master-<variant>' and 'master-abc0123-<variant>' | |
| VARIANT="1.34.4" | |
| REF_VARIANT="${REF}-${VARIANT}" | |
| REF_SHA_VARIANT="${REF}-${SHA}-${VARIANT}" | |
| # Pass variables to next step | |
| echo "VARIANT_BUILD_DIR=$VARIANT_BUILD_DIR" >> $GITHUB_OUTPUT | |
| echo "VARIANT=$VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_VARIANT=$REF_VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_SHA_VARIANT=$REF_SHA_VARIANT" >> $GITHUB_OUTPUT | |
| - name: 1.34.4 - Build (PRs) | |
| # Run only on pull requests | |
| if: github.event_name == 'pull_request' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.34.4 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: false | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-34-4.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-34-4.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.34.4 - Build and push (master) | |
| # Run only on master | |
| if: github.ref == 'refs/heads/master' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.34.4 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-34-4.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-34-4.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.34.4 - Build and push (release) | |
| if: startsWith(github.ref, 'refs/tags/') | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.34.4 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-34-4.outputs.VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-34-4.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-34-4.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| # This step generates the docker tags | |
| - name: Prepare | |
| id: prep-1-34-4-envsubst-git-jq-kustomize-sops-ssh-yq | |
| run: | | |
| set -e | |
| # Get ref, i.e. <branch_name> from refs/heads/<branch_name>, or <tag-name> from refs/tags/<tag_name>. E.g. 'master' or 'v0.0.0' | |
| REF=$( echo "${GITHUB_REF}" | rev | cut -d '/' -f 1 | rev ) | |
| # Get short commit hash E.g. 'abc0123' | |
| SHA=$( echo "${GITHUB_SHA}" | cut -c1-7 ) | |
| # Generate docker image tags | |
| # E.g. 'v0.0.0-<variant>' and 'v0.0.0-abc0123-<variant>' | |
| # E.g. 'master-<variant>' and 'master-abc0123-<variant>' | |
| VARIANT="1.34.4-envsubst-git-jq-kustomize-sops-ssh-yq" | |
| REF_VARIANT="${REF}-${VARIANT}" | |
| REF_SHA_VARIANT="${REF}-${SHA}-${VARIANT}" | |
| # Pass variables to next step | |
| echo "VARIANT_BUILD_DIR=$VARIANT_BUILD_DIR" >> $GITHUB_OUTPUT | |
| echo "VARIANT=$VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_VARIANT=$REF_VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_SHA_VARIANT=$REF_SHA_VARIANT" >> $GITHUB_OUTPUT | |
| - name: 1.34.4-envsubst-git-jq-kustomize-sops-ssh-yq - Build (PRs) | |
| # Run only on pull requests | |
| if: github.event_name == 'pull_request' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.34.4-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: false | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-34-4-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-34-4-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.34.4-envsubst-git-jq-kustomize-sops-ssh-yq - Build and push (master) | |
| # Run only on master | |
| if: github.ref == 'refs/heads/master' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.34.4-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-34-4-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-34-4-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.34.4-envsubst-git-jq-kustomize-sops-ssh-yq - Build and push (release) | |
| if: startsWith(github.ref, 'refs/tags/') | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.34.4-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-34-4-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-34-4-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-34-4-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| # Temp fix | |
| # https://github.com/docker/build-push-action/issues/252 | |
| # https://github.com/moby/buildkit/issues/1896 | |
| - name: Move cache | |
| run: | | |
| rm -rf /tmp/.buildx-cache | |
| mv /tmp/.buildx-cache-new /tmp/.buildx-cache | |
| build-1-33-9: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Display system info (linux) | |
| run: | | |
| set -e | |
| hostname | |
| whoami | |
| cat /etc/*release | |
| lscpu | |
| free | |
| df -h | |
| pwd | |
| docker info | |
| docker version | |
| # See: https://github.com/docker/build-push-action/blob/v2.6.1/docs/advanced/cache.md#github-cache | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v3 | |
| - name: Set up Docker Buildx | |
| id: buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Cache Docker layers | |
| uses: actions/cache@v4 | |
| with: | |
| path: /tmp/.buildx-cache | |
| key: ${{ runner.os }}-buildx-1.33.9-${{ github.sha }} | |
| restore-keys: | | |
| ${{ runner.os }}-buildx-1.33.9- | |
| ${{ runner.os }}-buildx- | |
| - name: Login to Docker Hub registry | |
| # Run on master and tags | |
| if: github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/') | |
| uses: docker/login-action@v3 | |
| with: | |
| username: ${{ secrets.DOCKERHUB_REGISTRY_USER }} | |
| password: ${{ secrets.DOCKERHUB_REGISTRY_PASSWORD }} | |
| # This step generates the docker tags | |
| - name: Prepare | |
| id: prep-1-33-9 | |
| run: | | |
| set -e | |
| # Get ref, i.e. <branch_name> from refs/heads/<branch_name>, or <tag-name> from refs/tags/<tag_name>. E.g. 'master' or 'v0.0.0' | |
| REF=$( echo "${GITHUB_REF}" | rev | cut -d '/' -f 1 | rev ) | |
| # Get short commit hash E.g. 'abc0123' | |
| SHA=$( echo "${GITHUB_SHA}" | cut -c1-7 ) | |
| # Generate docker image tags | |
| # E.g. 'v0.0.0-<variant>' and 'v0.0.0-abc0123-<variant>' | |
| # E.g. 'master-<variant>' and 'master-abc0123-<variant>' | |
| VARIANT="1.33.9" | |
| REF_VARIANT="${REF}-${VARIANT}" | |
| REF_SHA_VARIANT="${REF}-${SHA}-${VARIANT}" | |
| # Pass variables to next step | |
| echo "VARIANT_BUILD_DIR=$VARIANT_BUILD_DIR" >> $GITHUB_OUTPUT | |
| echo "VARIANT=$VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_VARIANT=$REF_VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_SHA_VARIANT=$REF_SHA_VARIANT" >> $GITHUB_OUTPUT | |
| - name: 1.33.9 - Build (PRs) | |
| # Run only on pull requests | |
| if: github.event_name == 'pull_request' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.33.9 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: false | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-33-9.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-33-9.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.33.9 - Build and push (master) | |
| # Run only on master | |
| if: github.ref == 'refs/heads/master' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.33.9 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-33-9.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-33-9.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.33.9 - Build and push (release) | |
| if: startsWith(github.ref, 'refs/tags/') | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.33.9 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-33-9.outputs.VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-33-9.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-33-9.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| # This step generates the docker tags | |
| - name: Prepare | |
| id: prep-1-33-9-envsubst-git-jq-kustomize-sops-ssh-yq | |
| run: | | |
| set -e | |
| # Get ref, i.e. <branch_name> from refs/heads/<branch_name>, or <tag-name> from refs/tags/<tag_name>. E.g. 'master' or 'v0.0.0' | |
| REF=$( echo "${GITHUB_REF}" | rev | cut -d '/' -f 1 | rev ) | |
| # Get short commit hash E.g. 'abc0123' | |
| SHA=$( echo "${GITHUB_SHA}" | cut -c1-7 ) | |
| # Generate docker image tags | |
| # E.g. 'v0.0.0-<variant>' and 'v0.0.0-abc0123-<variant>' | |
| # E.g. 'master-<variant>' and 'master-abc0123-<variant>' | |
| VARIANT="1.33.9-envsubst-git-jq-kustomize-sops-ssh-yq" | |
| REF_VARIANT="${REF}-${VARIANT}" | |
| REF_SHA_VARIANT="${REF}-${SHA}-${VARIANT}" | |
| # Pass variables to next step | |
| echo "VARIANT_BUILD_DIR=$VARIANT_BUILD_DIR" >> $GITHUB_OUTPUT | |
| echo "VARIANT=$VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_VARIANT=$REF_VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_SHA_VARIANT=$REF_SHA_VARIANT" >> $GITHUB_OUTPUT | |
| - name: 1.33.9-envsubst-git-jq-kustomize-sops-ssh-yq - Build (PRs) | |
| # Run only on pull requests | |
| if: github.event_name == 'pull_request' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.33.9-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: false | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-33-9-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-33-9-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.33.9-envsubst-git-jq-kustomize-sops-ssh-yq - Build and push (master) | |
| # Run only on master | |
| if: github.ref == 'refs/heads/master' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.33.9-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-33-9-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-33-9-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.33.9-envsubst-git-jq-kustomize-sops-ssh-yq - Build and push (release) | |
| if: startsWith(github.ref, 'refs/tags/') | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.33.9-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-33-9-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-33-9-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-33-9-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| # Temp fix | |
| # https://github.com/docker/build-push-action/issues/252 | |
| # https://github.com/moby/buildkit/issues/1896 | |
| - name: Move cache | |
| run: | | |
| rm -rf /tmp/.buildx-cache | |
| mv /tmp/.buildx-cache-new /tmp/.buildx-cache | |
| build-1-32-12: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Display system info (linux) | |
| run: | | |
| set -e | |
| hostname | |
| whoami | |
| cat /etc/*release | |
| lscpu | |
| free | |
| df -h | |
| pwd | |
| docker info | |
| docker version | |
| # See: https://github.com/docker/build-push-action/blob/v2.6.1/docs/advanced/cache.md#github-cache | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v3 | |
| - name: Set up Docker Buildx | |
| id: buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Cache Docker layers | |
| uses: actions/cache@v4 | |
| with: | |
| path: /tmp/.buildx-cache | |
| key: ${{ runner.os }}-buildx-1.32.12-${{ github.sha }} | |
| restore-keys: | | |
| ${{ runner.os }}-buildx-1.32.12- | |
| ${{ runner.os }}-buildx- | |
| - name: Login to Docker Hub registry | |
| # Run on master and tags | |
| if: github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/') | |
| uses: docker/login-action@v3 | |
| with: | |
| username: ${{ secrets.DOCKERHUB_REGISTRY_USER }} | |
| password: ${{ secrets.DOCKERHUB_REGISTRY_PASSWORD }} | |
| # This step generates the docker tags | |
| - name: Prepare | |
| id: prep-1-32-12 | |
| run: | | |
| set -e | |
| # Get ref, i.e. <branch_name> from refs/heads/<branch_name>, or <tag-name> from refs/tags/<tag_name>. E.g. 'master' or 'v0.0.0' | |
| REF=$( echo "${GITHUB_REF}" | rev | cut -d '/' -f 1 | rev ) | |
| # Get short commit hash E.g. 'abc0123' | |
| SHA=$( echo "${GITHUB_SHA}" | cut -c1-7 ) | |
| # Generate docker image tags | |
| # E.g. 'v0.0.0-<variant>' and 'v0.0.0-abc0123-<variant>' | |
| # E.g. 'master-<variant>' and 'master-abc0123-<variant>' | |
| VARIANT="1.32.12" | |
| REF_VARIANT="${REF}-${VARIANT}" | |
| REF_SHA_VARIANT="${REF}-${SHA}-${VARIANT}" | |
| # Pass variables to next step | |
| echo "VARIANT_BUILD_DIR=$VARIANT_BUILD_DIR" >> $GITHUB_OUTPUT | |
| echo "VARIANT=$VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_VARIANT=$REF_VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_SHA_VARIANT=$REF_SHA_VARIANT" >> $GITHUB_OUTPUT | |
| - name: 1.32.12 - Build (PRs) | |
| # Run only on pull requests | |
| if: github.event_name == 'pull_request' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.32.12 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: false | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-32-12.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-32-12.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.32.12 - Build and push (master) | |
| # Run only on master | |
| if: github.ref == 'refs/heads/master' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.32.12 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-32-12.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-32-12.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.32.12 - Build and push (release) | |
| if: startsWith(github.ref, 'refs/tags/') | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.32.12 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-32-12.outputs.VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-32-12.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-32-12.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| # This step generates the docker tags | |
| - name: Prepare | |
| id: prep-1-32-12-envsubst-git-jq-kustomize-sops-ssh-yq | |
| run: | | |
| set -e | |
| # Get ref, i.e. <branch_name> from refs/heads/<branch_name>, or <tag-name> from refs/tags/<tag_name>. E.g. 'master' or 'v0.0.0' | |
| REF=$( echo "${GITHUB_REF}" | rev | cut -d '/' -f 1 | rev ) | |
| # Get short commit hash E.g. 'abc0123' | |
| SHA=$( echo "${GITHUB_SHA}" | cut -c1-7 ) | |
| # Generate docker image tags | |
| # E.g. 'v0.0.0-<variant>' and 'v0.0.0-abc0123-<variant>' | |
| # E.g. 'master-<variant>' and 'master-abc0123-<variant>' | |
| VARIANT="1.32.12-envsubst-git-jq-kustomize-sops-ssh-yq" | |
| REF_VARIANT="${REF}-${VARIANT}" | |
| REF_SHA_VARIANT="${REF}-${SHA}-${VARIANT}" | |
| # Pass variables to next step | |
| echo "VARIANT_BUILD_DIR=$VARIANT_BUILD_DIR" >> $GITHUB_OUTPUT | |
| echo "VARIANT=$VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_VARIANT=$REF_VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_SHA_VARIANT=$REF_SHA_VARIANT" >> $GITHUB_OUTPUT | |
| - name: 1.32.12-envsubst-git-jq-kustomize-sops-ssh-yq - Build (PRs) | |
| # Run only on pull requests | |
| if: github.event_name == 'pull_request' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.32.12-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: false | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-32-12-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-32-12-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.32.12-envsubst-git-jq-kustomize-sops-ssh-yq - Build and push (master) | |
| # Run only on master | |
| if: github.ref == 'refs/heads/master' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.32.12-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-32-12-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-32-12-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.32.12-envsubst-git-jq-kustomize-sops-ssh-yq - Build and push (release) | |
| if: startsWith(github.ref, 'refs/tags/') | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.32.12-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-32-12-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-32-12-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-32-12-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| # Temp fix | |
| # https://github.com/docker/build-push-action/issues/252 | |
| # https://github.com/moby/buildkit/issues/1896 | |
| - name: Move cache | |
| run: | | |
| rm -rf /tmp/.buildx-cache | |
| mv /tmp/.buildx-cache-new /tmp/.buildx-cache | |
| build-1-31-14: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Display system info (linux) | |
| run: | | |
| set -e | |
| hostname | |
| whoami | |
| cat /etc/*release | |
| lscpu | |
| free | |
| df -h | |
| pwd | |
| docker info | |
| docker version | |
| # See: https://github.com/docker/build-push-action/blob/v2.6.1/docs/advanced/cache.md#github-cache | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v3 | |
| - name: Set up Docker Buildx | |
| id: buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Cache Docker layers | |
| uses: actions/cache@v4 | |
| with: | |
| path: /tmp/.buildx-cache | |
| key: ${{ runner.os }}-buildx-1.31.14-${{ github.sha }} | |
| restore-keys: | | |
| ${{ runner.os }}-buildx-1.31.14- | |
| ${{ runner.os }}-buildx- | |
| - name: Login to Docker Hub registry | |
| # Run on master and tags | |
| if: github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/') | |
| uses: docker/login-action@v3 | |
| with: | |
| username: ${{ secrets.DOCKERHUB_REGISTRY_USER }} | |
| password: ${{ secrets.DOCKERHUB_REGISTRY_PASSWORD }} | |
| # This step generates the docker tags | |
| - name: Prepare | |
| id: prep-1-31-14 | |
| run: | | |
| set -e | |
| # Get ref, i.e. <branch_name> from refs/heads/<branch_name>, or <tag-name> from refs/tags/<tag_name>. E.g. 'master' or 'v0.0.0' | |
| REF=$( echo "${GITHUB_REF}" | rev | cut -d '/' -f 1 | rev ) | |
| # Get short commit hash E.g. 'abc0123' | |
| SHA=$( echo "${GITHUB_SHA}" | cut -c1-7 ) | |
| # Generate docker image tags | |
| # E.g. 'v0.0.0-<variant>' and 'v0.0.0-abc0123-<variant>' | |
| # E.g. 'master-<variant>' and 'master-abc0123-<variant>' | |
| VARIANT="1.31.14" | |
| REF_VARIANT="${REF}-${VARIANT}" | |
| REF_SHA_VARIANT="${REF}-${SHA}-${VARIANT}" | |
| # Pass variables to next step | |
| echo "VARIANT_BUILD_DIR=$VARIANT_BUILD_DIR" >> $GITHUB_OUTPUT | |
| echo "VARIANT=$VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_VARIANT=$REF_VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_SHA_VARIANT=$REF_SHA_VARIANT" >> $GITHUB_OUTPUT | |
| - name: 1.31.14 - Build (PRs) | |
| # Run only on pull requests | |
| if: github.event_name == 'pull_request' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.31.14 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: false | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-31-14.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-31-14.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.31.14 - Build and push (master) | |
| # Run only on master | |
| if: github.ref == 'refs/heads/master' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.31.14 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-31-14.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-31-14.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.31.14 - Build and push (release) | |
| if: startsWith(github.ref, 'refs/tags/') | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.31.14 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-31-14.outputs.VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-31-14.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-31-14.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| # This step generates the docker tags | |
| - name: Prepare | |
| id: prep-1-31-14-envsubst-git-jq-kustomize-sops-ssh-yq | |
| run: | | |
| set -e | |
| # Get ref, i.e. <branch_name> from refs/heads/<branch_name>, or <tag-name> from refs/tags/<tag_name>. E.g. 'master' or 'v0.0.0' | |
| REF=$( echo "${GITHUB_REF}" | rev | cut -d '/' -f 1 | rev ) | |
| # Get short commit hash E.g. 'abc0123' | |
| SHA=$( echo "${GITHUB_SHA}" | cut -c1-7 ) | |
| # Generate docker image tags | |
| # E.g. 'v0.0.0-<variant>' and 'v0.0.0-abc0123-<variant>' | |
| # E.g. 'master-<variant>' and 'master-abc0123-<variant>' | |
| VARIANT="1.31.14-envsubst-git-jq-kustomize-sops-ssh-yq" | |
| REF_VARIANT="${REF}-${VARIANT}" | |
| REF_SHA_VARIANT="${REF}-${SHA}-${VARIANT}" | |
| # Pass variables to next step | |
| echo "VARIANT_BUILD_DIR=$VARIANT_BUILD_DIR" >> $GITHUB_OUTPUT | |
| echo "VARIANT=$VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_VARIANT=$REF_VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_SHA_VARIANT=$REF_SHA_VARIANT" >> $GITHUB_OUTPUT | |
| - name: 1.31.14-envsubst-git-jq-kustomize-sops-ssh-yq - Build (PRs) | |
| # Run only on pull requests | |
| if: github.event_name == 'pull_request' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.31.14-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: false | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-31-14-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-31-14-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.31.14-envsubst-git-jq-kustomize-sops-ssh-yq - Build and push (master) | |
| # Run only on master | |
| if: github.ref == 'refs/heads/master' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.31.14-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-31-14-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-31-14-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.31.14-envsubst-git-jq-kustomize-sops-ssh-yq - Build and push (release) | |
| if: startsWith(github.ref, 'refs/tags/') | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.31.14-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-31-14-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-31-14-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-31-14-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| # Temp fix | |
| # https://github.com/docker/build-push-action/issues/252 | |
| # https://github.com/moby/buildkit/issues/1896 | |
| - name: Move cache | |
| run: | | |
| rm -rf /tmp/.buildx-cache | |
| mv /tmp/.buildx-cache-new /tmp/.buildx-cache | |
| build-1-30-14: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Display system info (linux) | |
| run: | | |
| set -e | |
| hostname | |
| whoami | |
| cat /etc/*release | |
| lscpu | |
| free | |
| df -h | |
| pwd | |
| docker info | |
| docker version | |
| # See: https://github.com/docker/build-push-action/blob/v2.6.1/docs/advanced/cache.md#github-cache | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v3 | |
| - name: Set up Docker Buildx | |
| id: buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Cache Docker layers | |
| uses: actions/cache@v4 | |
| with: | |
| path: /tmp/.buildx-cache | |
| key: ${{ runner.os }}-buildx-1.30.14-${{ github.sha }} | |
| restore-keys: | | |
| ${{ runner.os }}-buildx-1.30.14- | |
| ${{ runner.os }}-buildx- | |
| - name: Login to Docker Hub registry | |
| # Run on master and tags | |
| if: github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/') | |
| uses: docker/login-action@v3 | |
| with: | |
| username: ${{ secrets.DOCKERHUB_REGISTRY_USER }} | |
| password: ${{ secrets.DOCKERHUB_REGISTRY_PASSWORD }} | |
| # This step generates the docker tags | |
| - name: Prepare | |
| id: prep-1-30-14 | |
| run: | | |
| set -e | |
| # Get ref, i.e. <branch_name> from refs/heads/<branch_name>, or <tag-name> from refs/tags/<tag_name>. E.g. 'master' or 'v0.0.0' | |
| REF=$( echo "${GITHUB_REF}" | rev | cut -d '/' -f 1 | rev ) | |
| # Get short commit hash E.g. 'abc0123' | |
| SHA=$( echo "${GITHUB_SHA}" | cut -c1-7 ) | |
| # Generate docker image tags | |
| # E.g. 'v0.0.0-<variant>' and 'v0.0.0-abc0123-<variant>' | |
| # E.g. 'master-<variant>' and 'master-abc0123-<variant>' | |
| VARIANT="1.30.14" | |
| REF_VARIANT="${REF}-${VARIANT}" | |
| REF_SHA_VARIANT="${REF}-${SHA}-${VARIANT}" | |
| # Pass variables to next step | |
| echo "VARIANT_BUILD_DIR=$VARIANT_BUILD_DIR" >> $GITHUB_OUTPUT | |
| echo "VARIANT=$VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_VARIANT=$REF_VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_SHA_VARIANT=$REF_SHA_VARIANT" >> $GITHUB_OUTPUT | |
| - name: 1.30.14 - Build (PRs) | |
| # Run only on pull requests | |
| if: github.event_name == 'pull_request' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.30.14 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: false | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-30-14.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-30-14.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.30.14 - Build and push (master) | |
| # Run only on master | |
| if: github.ref == 'refs/heads/master' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.30.14 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-30-14.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-30-14.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.30.14 - Build and push (release) | |
| if: startsWith(github.ref, 'refs/tags/') | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.30.14 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-30-14.outputs.VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-30-14.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-30-14.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| # This step generates the docker tags | |
| - name: Prepare | |
| id: prep-1-30-14-envsubst-git-jq-kustomize-sops-ssh-yq | |
| run: | | |
| set -e | |
| # Get ref, i.e. <branch_name> from refs/heads/<branch_name>, or <tag-name> from refs/tags/<tag_name>. E.g. 'master' or 'v0.0.0' | |
| REF=$( echo "${GITHUB_REF}" | rev | cut -d '/' -f 1 | rev ) | |
| # Get short commit hash E.g. 'abc0123' | |
| SHA=$( echo "${GITHUB_SHA}" | cut -c1-7 ) | |
| # Generate docker image tags | |
| # E.g. 'v0.0.0-<variant>' and 'v0.0.0-abc0123-<variant>' | |
| # E.g. 'master-<variant>' and 'master-abc0123-<variant>' | |
| VARIANT="1.30.14-envsubst-git-jq-kustomize-sops-ssh-yq" | |
| REF_VARIANT="${REF}-${VARIANT}" | |
| REF_SHA_VARIANT="${REF}-${SHA}-${VARIANT}" | |
| # Pass variables to next step | |
| echo "VARIANT_BUILD_DIR=$VARIANT_BUILD_DIR" >> $GITHUB_OUTPUT | |
| echo "VARIANT=$VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_VARIANT=$REF_VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_SHA_VARIANT=$REF_SHA_VARIANT" >> $GITHUB_OUTPUT | |
| - name: 1.30.14-envsubst-git-jq-kustomize-sops-ssh-yq - Build (PRs) | |
| # Run only on pull requests | |
| if: github.event_name == 'pull_request' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.30.14-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: false | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-30-14-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-30-14-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.30.14-envsubst-git-jq-kustomize-sops-ssh-yq - Build and push (master) | |
| # Run only on master | |
| if: github.ref == 'refs/heads/master' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.30.14-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-30-14-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-30-14-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.30.14-envsubst-git-jq-kustomize-sops-ssh-yq - Build and push (release) | |
| if: startsWith(github.ref, 'refs/tags/') | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.30.14-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-30-14-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-30-14-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-30-14-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| # Temp fix | |
| # https://github.com/docker/build-push-action/issues/252 | |
| # https://github.com/moby/buildkit/issues/1896 | |
| - name: Move cache | |
| run: | | |
| rm -rf /tmp/.buildx-cache | |
| mv /tmp/.buildx-cache-new /tmp/.buildx-cache | |
| build-1-29-15: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Display system info (linux) | |
| run: | | |
| set -e | |
| hostname | |
| whoami | |
| cat /etc/*release | |
| lscpu | |
| free | |
| df -h | |
| pwd | |
| docker info | |
| docker version | |
| # See: https://github.com/docker/build-push-action/blob/v2.6.1/docs/advanced/cache.md#github-cache | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v3 | |
| - name: Set up Docker Buildx | |
| id: buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Cache Docker layers | |
| uses: actions/cache@v4 | |
| with: | |
| path: /tmp/.buildx-cache | |
| key: ${{ runner.os }}-buildx-1.29.15-${{ github.sha }} | |
| restore-keys: | | |
| ${{ runner.os }}-buildx-1.29.15- | |
| ${{ runner.os }}-buildx- | |
| - name: Login to Docker Hub registry | |
| # Run on master and tags | |
| if: github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/') | |
| uses: docker/login-action@v3 | |
| with: | |
| username: ${{ secrets.DOCKERHUB_REGISTRY_USER }} | |
| password: ${{ secrets.DOCKERHUB_REGISTRY_PASSWORD }} | |
| # This step generates the docker tags | |
| - name: Prepare | |
| id: prep-1-29-15 | |
| run: | | |
| set -e | |
| # Get ref, i.e. <branch_name> from refs/heads/<branch_name>, or <tag-name> from refs/tags/<tag_name>. E.g. 'master' or 'v0.0.0' | |
| REF=$( echo "${GITHUB_REF}" | rev | cut -d '/' -f 1 | rev ) | |
| # Get short commit hash E.g. 'abc0123' | |
| SHA=$( echo "${GITHUB_SHA}" | cut -c1-7 ) | |
| # Generate docker image tags | |
| # E.g. 'v0.0.0-<variant>' and 'v0.0.0-abc0123-<variant>' | |
| # E.g. 'master-<variant>' and 'master-abc0123-<variant>' | |
| VARIANT="1.29.15" | |
| REF_VARIANT="${REF}-${VARIANT}" | |
| REF_SHA_VARIANT="${REF}-${SHA}-${VARIANT}" | |
| # Pass variables to next step | |
| echo "VARIANT_BUILD_DIR=$VARIANT_BUILD_DIR" >> $GITHUB_OUTPUT | |
| echo "VARIANT=$VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_VARIANT=$REF_VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_SHA_VARIANT=$REF_SHA_VARIANT" >> $GITHUB_OUTPUT | |
| - name: 1.29.15 - Build (PRs) | |
| # Run only on pull requests | |
| if: github.event_name == 'pull_request' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.29.15 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: false | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-29-15.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-29-15.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.29.15 - Build and push (master) | |
| # Run only on master | |
| if: github.ref == 'refs/heads/master' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.29.15 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-29-15.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-29-15.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.29.15 - Build and push (release) | |
| if: startsWith(github.ref, 'refs/tags/') | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.29.15 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-29-15.outputs.VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-29-15.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-29-15.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| # This step generates the docker tags | |
| - name: Prepare | |
| id: prep-1-29-15-envsubst-git-jq-kustomize-sops-ssh-yq | |
| run: | | |
| set -e | |
| # Get ref, i.e. <branch_name> from refs/heads/<branch_name>, or <tag-name> from refs/tags/<tag_name>. E.g. 'master' or 'v0.0.0' | |
| REF=$( echo "${GITHUB_REF}" | rev | cut -d '/' -f 1 | rev ) | |
| # Get short commit hash E.g. 'abc0123' | |
| SHA=$( echo "${GITHUB_SHA}" | cut -c1-7 ) | |
| # Generate docker image tags | |
| # E.g. 'v0.0.0-<variant>' and 'v0.0.0-abc0123-<variant>' | |
| # E.g. 'master-<variant>' and 'master-abc0123-<variant>' | |
| VARIANT="1.29.15-envsubst-git-jq-kustomize-sops-ssh-yq" | |
| REF_VARIANT="${REF}-${VARIANT}" | |
| REF_SHA_VARIANT="${REF}-${SHA}-${VARIANT}" | |
| # Pass variables to next step | |
| echo "VARIANT_BUILD_DIR=$VARIANT_BUILD_DIR" >> $GITHUB_OUTPUT | |
| echo "VARIANT=$VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_VARIANT=$REF_VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_SHA_VARIANT=$REF_SHA_VARIANT" >> $GITHUB_OUTPUT | |
| - name: 1.29.15-envsubst-git-jq-kustomize-sops-ssh-yq - Build (PRs) | |
| # Run only on pull requests | |
| if: github.event_name == 'pull_request' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.29.15-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: false | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-29-15-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-29-15-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.29.15-envsubst-git-jq-kustomize-sops-ssh-yq - Build and push (master) | |
| # Run only on master | |
| if: github.ref == 'refs/heads/master' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.29.15-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-29-15-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-29-15-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.29.15-envsubst-git-jq-kustomize-sops-ssh-yq - Build and push (release) | |
| if: startsWith(github.ref, 'refs/tags/') | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.29.15-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-29-15-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-29-15-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-29-15-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| # Temp fix | |
| # https://github.com/docker/build-push-action/issues/252 | |
| # https://github.com/moby/buildkit/issues/1896 | |
| - name: Move cache | |
| run: | | |
| rm -rf /tmp/.buildx-cache | |
| mv /tmp/.buildx-cache-new /tmp/.buildx-cache | |
| build-1-28-15: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Display system info (linux) | |
| run: | | |
| set -e | |
| hostname | |
| whoami | |
| cat /etc/*release | |
| lscpu | |
| free | |
| df -h | |
| pwd | |
| docker info | |
| docker version | |
| # See: https://github.com/docker/build-push-action/blob/v2.6.1/docs/advanced/cache.md#github-cache | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v3 | |
| - name: Set up Docker Buildx | |
| id: buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Cache Docker layers | |
| uses: actions/cache@v4 | |
| with: | |
| path: /tmp/.buildx-cache | |
| key: ${{ runner.os }}-buildx-1.28.15-${{ github.sha }} | |
| restore-keys: | | |
| ${{ runner.os }}-buildx-1.28.15- | |
| ${{ runner.os }}-buildx- | |
| - name: Login to Docker Hub registry | |
| # Run on master and tags | |
| if: github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/') | |
| uses: docker/login-action@v3 | |
| with: | |
| username: ${{ secrets.DOCKERHUB_REGISTRY_USER }} | |
| password: ${{ secrets.DOCKERHUB_REGISTRY_PASSWORD }} | |
| # This step generates the docker tags | |
| - name: Prepare | |
| id: prep-1-28-15 | |
| run: | | |
| set -e | |
| # Get ref, i.e. <branch_name> from refs/heads/<branch_name>, or <tag-name> from refs/tags/<tag_name>. E.g. 'master' or 'v0.0.0' | |
| REF=$( echo "${GITHUB_REF}" | rev | cut -d '/' -f 1 | rev ) | |
| # Get short commit hash E.g. 'abc0123' | |
| SHA=$( echo "${GITHUB_SHA}" | cut -c1-7 ) | |
| # Generate docker image tags | |
| # E.g. 'v0.0.0-<variant>' and 'v0.0.0-abc0123-<variant>' | |
| # E.g. 'master-<variant>' and 'master-abc0123-<variant>' | |
| VARIANT="1.28.15" | |
| REF_VARIANT="${REF}-${VARIANT}" | |
| REF_SHA_VARIANT="${REF}-${SHA}-${VARIANT}" | |
| # Pass variables to next step | |
| echo "VARIANT_BUILD_DIR=$VARIANT_BUILD_DIR" >> $GITHUB_OUTPUT | |
| echo "VARIANT=$VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_VARIANT=$REF_VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_SHA_VARIANT=$REF_SHA_VARIANT" >> $GITHUB_OUTPUT | |
| - name: 1.28.15 - Build (PRs) | |
| # Run only on pull requests | |
| if: github.event_name == 'pull_request' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.28.15 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: false | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-28-15.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-28-15.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.28.15 - Build and push (master) | |
| # Run only on master | |
| if: github.ref == 'refs/heads/master' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.28.15 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-28-15.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-28-15.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.28.15 - Build and push (release) | |
| if: startsWith(github.ref, 'refs/tags/') | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.28.15 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-28-15.outputs.VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-28-15.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-28-15.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| # This step generates the docker tags | |
| - name: Prepare | |
| id: prep-1-28-15-envsubst-git-jq-kustomize-sops-ssh-yq | |
| run: | | |
| set -e | |
| # Get ref, i.e. <branch_name> from refs/heads/<branch_name>, or <tag-name> from refs/tags/<tag_name>. E.g. 'master' or 'v0.0.0' | |
| REF=$( echo "${GITHUB_REF}" | rev | cut -d '/' -f 1 | rev ) | |
| # Get short commit hash E.g. 'abc0123' | |
| SHA=$( echo "${GITHUB_SHA}" | cut -c1-7 ) | |
| # Generate docker image tags | |
| # E.g. 'v0.0.0-<variant>' and 'v0.0.0-abc0123-<variant>' | |
| # E.g. 'master-<variant>' and 'master-abc0123-<variant>' | |
| VARIANT="1.28.15-envsubst-git-jq-kustomize-sops-ssh-yq" | |
| REF_VARIANT="${REF}-${VARIANT}" | |
| REF_SHA_VARIANT="${REF}-${SHA}-${VARIANT}" | |
| # Pass variables to next step | |
| echo "VARIANT_BUILD_DIR=$VARIANT_BUILD_DIR" >> $GITHUB_OUTPUT | |
| echo "VARIANT=$VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_VARIANT=$REF_VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_SHA_VARIANT=$REF_SHA_VARIANT" >> $GITHUB_OUTPUT | |
| - name: 1.28.15-envsubst-git-jq-kustomize-sops-ssh-yq - Build (PRs) | |
| # Run only on pull requests | |
| if: github.event_name == 'pull_request' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.28.15-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: false | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-28-15-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-28-15-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.28.15-envsubst-git-jq-kustomize-sops-ssh-yq - Build and push (master) | |
| # Run only on master | |
| if: github.ref == 'refs/heads/master' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.28.15-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-28-15-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-28-15-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.28.15-envsubst-git-jq-kustomize-sops-ssh-yq - Build and push (release) | |
| if: startsWith(github.ref, 'refs/tags/') | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.28.15-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-28-15-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-28-15-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-28-15-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| # Temp fix | |
| # https://github.com/docker/build-push-action/issues/252 | |
| # https://github.com/moby/buildkit/issues/1896 | |
| - name: Move cache | |
| run: | | |
| rm -rf /tmp/.buildx-cache | |
| mv /tmp/.buildx-cache-new /tmp/.buildx-cache | |
| build-1-27-16: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Display system info (linux) | |
| run: | | |
| set -e | |
| hostname | |
| whoami | |
| cat /etc/*release | |
| lscpu | |
| free | |
| df -h | |
| pwd | |
| docker info | |
| docker version | |
| # See: https://github.com/docker/build-push-action/blob/v2.6.1/docs/advanced/cache.md#github-cache | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v3 | |
| - name: Set up Docker Buildx | |
| id: buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Cache Docker layers | |
| uses: actions/cache@v4 | |
| with: | |
| path: /tmp/.buildx-cache | |
| key: ${{ runner.os }}-buildx-1.27.16-${{ github.sha }} | |
| restore-keys: | | |
| ${{ runner.os }}-buildx-1.27.16- | |
| ${{ runner.os }}-buildx- | |
| - name: Login to Docker Hub registry | |
| # Run on master and tags | |
| if: github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/') | |
| uses: docker/login-action@v3 | |
| with: | |
| username: ${{ secrets.DOCKERHUB_REGISTRY_USER }} | |
| password: ${{ secrets.DOCKERHUB_REGISTRY_PASSWORD }} | |
| # This step generates the docker tags | |
| - name: Prepare | |
| id: prep-1-27-16 | |
| run: | | |
| set -e | |
| # Get ref, i.e. <branch_name> from refs/heads/<branch_name>, or <tag-name> from refs/tags/<tag_name>. E.g. 'master' or 'v0.0.0' | |
| REF=$( echo "${GITHUB_REF}" | rev | cut -d '/' -f 1 | rev ) | |
| # Get short commit hash E.g. 'abc0123' | |
| SHA=$( echo "${GITHUB_SHA}" | cut -c1-7 ) | |
| # Generate docker image tags | |
| # E.g. 'v0.0.0-<variant>' and 'v0.0.0-abc0123-<variant>' | |
| # E.g. 'master-<variant>' and 'master-abc0123-<variant>' | |
| VARIANT="1.27.16" | |
| REF_VARIANT="${REF}-${VARIANT}" | |
| REF_SHA_VARIANT="${REF}-${SHA}-${VARIANT}" | |
| # Pass variables to next step | |
| echo "VARIANT_BUILD_DIR=$VARIANT_BUILD_DIR" >> $GITHUB_OUTPUT | |
| echo "VARIANT=$VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_VARIANT=$REF_VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_SHA_VARIANT=$REF_SHA_VARIANT" >> $GITHUB_OUTPUT | |
| - name: 1.27.16 - Build (PRs) | |
| # Run only on pull requests | |
| if: github.event_name == 'pull_request' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.27.16 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: false | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-27-16.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-27-16.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.27.16 - Build and push (master) | |
| # Run only on master | |
| if: github.ref == 'refs/heads/master' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.27.16 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-27-16.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-27-16.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.27.16 - Build and push (release) | |
| if: startsWith(github.ref, 'refs/tags/') | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.27.16 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-27-16.outputs.VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-27-16.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-27-16.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| # This step generates the docker tags | |
| - name: Prepare | |
| id: prep-1-27-16-envsubst-git-jq-kustomize-sops-ssh-yq | |
| run: | | |
| set -e | |
| # Get ref, i.e. <branch_name> from refs/heads/<branch_name>, or <tag-name> from refs/tags/<tag_name>. E.g. 'master' or 'v0.0.0' | |
| REF=$( echo "${GITHUB_REF}" | rev | cut -d '/' -f 1 | rev ) | |
| # Get short commit hash E.g. 'abc0123' | |
| SHA=$( echo "${GITHUB_SHA}" | cut -c1-7 ) | |
| # Generate docker image tags | |
| # E.g. 'v0.0.0-<variant>' and 'v0.0.0-abc0123-<variant>' | |
| # E.g. 'master-<variant>' and 'master-abc0123-<variant>' | |
| VARIANT="1.27.16-envsubst-git-jq-kustomize-sops-ssh-yq" | |
| REF_VARIANT="${REF}-${VARIANT}" | |
| REF_SHA_VARIANT="${REF}-${SHA}-${VARIANT}" | |
| # Pass variables to next step | |
| echo "VARIANT_BUILD_DIR=$VARIANT_BUILD_DIR" >> $GITHUB_OUTPUT | |
| echo "VARIANT=$VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_VARIANT=$REF_VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_SHA_VARIANT=$REF_SHA_VARIANT" >> $GITHUB_OUTPUT | |
| - name: 1.27.16-envsubst-git-jq-kustomize-sops-ssh-yq - Build (PRs) | |
| # Run only on pull requests | |
| if: github.event_name == 'pull_request' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.27.16-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: false | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-27-16-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-27-16-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.27.16-envsubst-git-jq-kustomize-sops-ssh-yq - Build and push (master) | |
| # Run only on master | |
| if: github.ref == 'refs/heads/master' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.27.16-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-27-16-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-27-16-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.27.16-envsubst-git-jq-kustomize-sops-ssh-yq - Build and push (release) | |
| if: startsWith(github.ref, 'refs/tags/') | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.27.16-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-27-16-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-27-16-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-27-16-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| # Temp fix | |
| # https://github.com/docker/build-push-action/issues/252 | |
| # https://github.com/moby/buildkit/issues/1896 | |
| - name: Move cache | |
| run: | | |
| rm -rf /tmp/.buildx-cache | |
| mv /tmp/.buildx-cache-new /tmp/.buildx-cache | |
| build-1-26-15: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Display system info (linux) | |
| run: | | |
| set -e | |
| hostname | |
| whoami | |
| cat /etc/*release | |
| lscpu | |
| free | |
| df -h | |
| pwd | |
| docker info | |
| docker version | |
| # See: https://github.com/docker/build-push-action/blob/v2.6.1/docs/advanced/cache.md#github-cache | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v3 | |
| - name: Set up Docker Buildx | |
| id: buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Cache Docker layers | |
| uses: actions/cache@v4 | |
| with: | |
| path: /tmp/.buildx-cache | |
| key: ${{ runner.os }}-buildx-1.26.15-${{ github.sha }} | |
| restore-keys: | | |
| ${{ runner.os }}-buildx-1.26.15- | |
| ${{ runner.os }}-buildx- | |
| - name: Login to Docker Hub registry | |
| # Run on master and tags | |
| if: github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/') | |
| uses: docker/login-action@v3 | |
| with: | |
| username: ${{ secrets.DOCKERHUB_REGISTRY_USER }} | |
| password: ${{ secrets.DOCKERHUB_REGISTRY_PASSWORD }} | |
| # This step generates the docker tags | |
| - name: Prepare | |
| id: prep-1-26-15 | |
| run: | | |
| set -e | |
| # Get ref, i.e. <branch_name> from refs/heads/<branch_name>, or <tag-name> from refs/tags/<tag_name>. E.g. 'master' or 'v0.0.0' | |
| REF=$( echo "${GITHUB_REF}" | rev | cut -d '/' -f 1 | rev ) | |
| # Get short commit hash E.g. 'abc0123' | |
| SHA=$( echo "${GITHUB_SHA}" | cut -c1-7 ) | |
| # Generate docker image tags | |
| # E.g. 'v0.0.0-<variant>' and 'v0.0.0-abc0123-<variant>' | |
| # E.g. 'master-<variant>' and 'master-abc0123-<variant>' | |
| VARIANT="1.26.15" | |
| REF_VARIANT="${REF}-${VARIANT}" | |
| REF_SHA_VARIANT="${REF}-${SHA}-${VARIANT}" | |
| # Pass variables to next step | |
| echo "VARIANT_BUILD_DIR=$VARIANT_BUILD_DIR" >> $GITHUB_OUTPUT | |
| echo "VARIANT=$VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_VARIANT=$REF_VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_SHA_VARIANT=$REF_SHA_VARIANT" >> $GITHUB_OUTPUT | |
| - name: 1.26.15 - Build (PRs) | |
| # Run only on pull requests | |
| if: github.event_name == 'pull_request' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.26.15 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: false | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-26-15.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-26-15.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.26.15 - Build and push (master) | |
| # Run only on master | |
| if: github.ref == 'refs/heads/master' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.26.15 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-26-15.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-26-15.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.26.15 - Build and push (release) | |
| if: startsWith(github.ref, 'refs/tags/') | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.26.15 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-26-15.outputs.VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-26-15.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-26-15.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| # This step generates the docker tags | |
| - name: Prepare | |
| id: prep-1-26-15-envsubst-git-jq-kustomize-sops-ssh-yq | |
| run: | | |
| set -e | |
| # Get ref, i.e. <branch_name> from refs/heads/<branch_name>, or <tag-name> from refs/tags/<tag_name>. E.g. 'master' or 'v0.0.0' | |
| REF=$( echo "${GITHUB_REF}" | rev | cut -d '/' -f 1 | rev ) | |
| # Get short commit hash E.g. 'abc0123' | |
| SHA=$( echo "${GITHUB_SHA}" | cut -c1-7 ) | |
| # Generate docker image tags | |
| # E.g. 'v0.0.0-<variant>' and 'v0.0.0-abc0123-<variant>' | |
| # E.g. 'master-<variant>' and 'master-abc0123-<variant>' | |
| VARIANT="1.26.15-envsubst-git-jq-kustomize-sops-ssh-yq" | |
| REF_VARIANT="${REF}-${VARIANT}" | |
| REF_SHA_VARIANT="${REF}-${SHA}-${VARIANT}" | |
| # Pass variables to next step | |
| echo "VARIANT_BUILD_DIR=$VARIANT_BUILD_DIR" >> $GITHUB_OUTPUT | |
| echo "VARIANT=$VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_VARIANT=$REF_VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_SHA_VARIANT=$REF_SHA_VARIANT" >> $GITHUB_OUTPUT | |
| - name: 1.26.15-envsubst-git-jq-kustomize-sops-ssh-yq - Build (PRs) | |
| # Run only on pull requests | |
| if: github.event_name == 'pull_request' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.26.15-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: false | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-26-15-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-26-15-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.26.15-envsubst-git-jq-kustomize-sops-ssh-yq - Build and push (master) | |
| # Run only on master | |
| if: github.ref == 'refs/heads/master' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.26.15-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-26-15-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-26-15-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.26.15-envsubst-git-jq-kustomize-sops-ssh-yq - Build and push (release) | |
| if: startsWith(github.ref, 'refs/tags/') | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.26.15-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-26-15-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-26-15-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-26-15-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| # Temp fix | |
| # https://github.com/docker/build-push-action/issues/252 | |
| # https://github.com/moby/buildkit/issues/1896 | |
| - name: Move cache | |
| run: | | |
| rm -rf /tmp/.buildx-cache | |
| mv /tmp/.buildx-cache-new /tmp/.buildx-cache | |
| build-1-25-16: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Display system info (linux) | |
| run: | | |
| set -e | |
| hostname | |
| whoami | |
| cat /etc/*release | |
| lscpu | |
| free | |
| df -h | |
| pwd | |
| docker info | |
| docker version | |
| # See: https://github.com/docker/build-push-action/blob/v2.6.1/docs/advanced/cache.md#github-cache | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v3 | |
| - name: Set up Docker Buildx | |
| id: buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Cache Docker layers | |
| uses: actions/cache@v4 | |
| with: | |
| path: /tmp/.buildx-cache | |
| key: ${{ runner.os }}-buildx-1.25.16-${{ github.sha }} | |
| restore-keys: | | |
| ${{ runner.os }}-buildx-1.25.16- | |
| ${{ runner.os }}-buildx- | |
| - name: Login to Docker Hub registry | |
| # Run on master and tags | |
| if: github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/') | |
| uses: docker/login-action@v3 | |
| with: | |
| username: ${{ secrets.DOCKERHUB_REGISTRY_USER }} | |
| password: ${{ secrets.DOCKERHUB_REGISTRY_PASSWORD }} | |
| # This step generates the docker tags | |
| - name: Prepare | |
| id: prep-1-25-16 | |
| run: | | |
| set -e | |
| # Get ref, i.e. <branch_name> from refs/heads/<branch_name>, or <tag-name> from refs/tags/<tag_name>. E.g. 'master' or 'v0.0.0' | |
| REF=$( echo "${GITHUB_REF}" | rev | cut -d '/' -f 1 | rev ) | |
| # Get short commit hash E.g. 'abc0123' | |
| SHA=$( echo "${GITHUB_SHA}" | cut -c1-7 ) | |
| # Generate docker image tags | |
| # E.g. 'v0.0.0-<variant>' and 'v0.0.0-abc0123-<variant>' | |
| # E.g. 'master-<variant>' and 'master-abc0123-<variant>' | |
| VARIANT="1.25.16" | |
| REF_VARIANT="${REF}-${VARIANT}" | |
| REF_SHA_VARIANT="${REF}-${SHA}-${VARIANT}" | |
| # Pass variables to next step | |
| echo "VARIANT_BUILD_DIR=$VARIANT_BUILD_DIR" >> $GITHUB_OUTPUT | |
| echo "VARIANT=$VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_VARIANT=$REF_VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_SHA_VARIANT=$REF_SHA_VARIANT" >> $GITHUB_OUTPUT | |
| - name: 1.25.16 - Build (PRs) | |
| # Run only on pull requests | |
| if: github.event_name == 'pull_request' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.25.16 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: false | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-25-16.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-25-16.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.25.16 - Build and push (master) | |
| # Run only on master | |
| if: github.ref == 'refs/heads/master' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.25.16 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-25-16.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-25-16.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.25.16 - Build and push (release) | |
| if: startsWith(github.ref, 'refs/tags/') | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.25.16 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-25-16.outputs.VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-25-16.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-25-16.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| # This step generates the docker tags | |
| - name: Prepare | |
| id: prep-1-25-16-envsubst-git-jq-kustomize-sops-ssh-yq | |
| run: | | |
| set -e | |
| # Get ref, i.e. <branch_name> from refs/heads/<branch_name>, or <tag-name> from refs/tags/<tag_name>. E.g. 'master' or 'v0.0.0' | |
| REF=$( echo "${GITHUB_REF}" | rev | cut -d '/' -f 1 | rev ) | |
| # Get short commit hash E.g. 'abc0123' | |
| SHA=$( echo "${GITHUB_SHA}" | cut -c1-7 ) | |
| # Generate docker image tags | |
| # E.g. 'v0.0.0-<variant>' and 'v0.0.0-abc0123-<variant>' | |
| # E.g. 'master-<variant>' and 'master-abc0123-<variant>' | |
| VARIANT="1.25.16-envsubst-git-jq-kustomize-sops-ssh-yq" | |
| REF_VARIANT="${REF}-${VARIANT}" | |
| REF_SHA_VARIANT="${REF}-${SHA}-${VARIANT}" | |
| # Pass variables to next step | |
| echo "VARIANT_BUILD_DIR=$VARIANT_BUILD_DIR" >> $GITHUB_OUTPUT | |
| echo "VARIANT=$VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_VARIANT=$REF_VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_SHA_VARIANT=$REF_SHA_VARIANT" >> $GITHUB_OUTPUT | |
| - name: 1.25.16-envsubst-git-jq-kustomize-sops-ssh-yq - Build (PRs) | |
| # Run only on pull requests | |
| if: github.event_name == 'pull_request' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.25.16-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: false | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-25-16-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-25-16-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.25.16-envsubst-git-jq-kustomize-sops-ssh-yq - Build and push (master) | |
| # Run only on master | |
| if: github.ref == 'refs/heads/master' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.25.16-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-25-16-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-25-16-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.25.16-envsubst-git-jq-kustomize-sops-ssh-yq - Build and push (release) | |
| if: startsWith(github.ref, 'refs/tags/') | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.25.16-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-25-16-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-25-16-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-25-16-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| # Temp fix | |
| # https://github.com/docker/build-push-action/issues/252 | |
| # https://github.com/moby/buildkit/issues/1896 | |
| - name: Move cache | |
| run: | | |
| rm -rf /tmp/.buildx-cache | |
| mv /tmp/.buildx-cache-new /tmp/.buildx-cache | |
| build-1-24-17: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Display system info (linux) | |
| run: | | |
| set -e | |
| hostname | |
| whoami | |
| cat /etc/*release | |
| lscpu | |
| free | |
| df -h | |
| pwd | |
| docker info | |
| docker version | |
| # See: https://github.com/docker/build-push-action/blob/v2.6.1/docs/advanced/cache.md#github-cache | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v3 | |
| - name: Set up Docker Buildx | |
| id: buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Cache Docker layers | |
| uses: actions/cache@v4 | |
| with: | |
| path: /tmp/.buildx-cache | |
| key: ${{ runner.os }}-buildx-1.24.17-${{ github.sha }} | |
| restore-keys: | | |
| ${{ runner.os }}-buildx-1.24.17- | |
| ${{ runner.os }}-buildx- | |
| - name: Login to Docker Hub registry | |
| # Run on master and tags | |
| if: github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/') | |
| uses: docker/login-action@v3 | |
| with: | |
| username: ${{ secrets.DOCKERHUB_REGISTRY_USER }} | |
| password: ${{ secrets.DOCKERHUB_REGISTRY_PASSWORD }} | |
| # This step generates the docker tags | |
| - name: Prepare | |
| id: prep-1-24-17 | |
| run: | | |
| set -e | |
| # Get ref, i.e. <branch_name> from refs/heads/<branch_name>, or <tag-name> from refs/tags/<tag_name>. E.g. 'master' or 'v0.0.0' | |
| REF=$( echo "${GITHUB_REF}" | rev | cut -d '/' -f 1 | rev ) | |
| # Get short commit hash E.g. 'abc0123' | |
| SHA=$( echo "${GITHUB_SHA}" | cut -c1-7 ) | |
| # Generate docker image tags | |
| # E.g. 'v0.0.0-<variant>' and 'v0.0.0-abc0123-<variant>' | |
| # E.g. 'master-<variant>' and 'master-abc0123-<variant>' | |
| VARIANT="1.24.17" | |
| REF_VARIANT="${REF}-${VARIANT}" | |
| REF_SHA_VARIANT="${REF}-${SHA}-${VARIANT}" | |
| # Pass variables to next step | |
| echo "VARIANT_BUILD_DIR=$VARIANT_BUILD_DIR" >> $GITHUB_OUTPUT | |
| echo "VARIANT=$VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_VARIANT=$REF_VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_SHA_VARIANT=$REF_SHA_VARIANT" >> $GITHUB_OUTPUT | |
| - name: 1.24.17 - Build (PRs) | |
| # Run only on pull requests | |
| if: github.event_name == 'pull_request' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.24.17 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: false | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-24-17.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-24-17.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.24.17 - Build and push (master) | |
| # Run only on master | |
| if: github.ref == 'refs/heads/master' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.24.17 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-24-17.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-24-17.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.24.17 - Build and push (release) | |
| if: startsWith(github.ref, 'refs/tags/') | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.24.17 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-24-17.outputs.VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-24-17.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-24-17.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| # This step generates the docker tags | |
| - name: Prepare | |
| id: prep-1-24-17-envsubst-git-jq-kustomize-sops-ssh-yq | |
| run: | | |
| set -e | |
| # Get ref, i.e. <branch_name> from refs/heads/<branch_name>, or <tag-name> from refs/tags/<tag_name>. E.g. 'master' or 'v0.0.0' | |
| REF=$( echo "${GITHUB_REF}" | rev | cut -d '/' -f 1 | rev ) | |
| # Get short commit hash E.g. 'abc0123' | |
| SHA=$( echo "${GITHUB_SHA}" | cut -c1-7 ) | |
| # Generate docker image tags | |
| # E.g. 'v0.0.0-<variant>' and 'v0.0.0-abc0123-<variant>' | |
| # E.g. 'master-<variant>' and 'master-abc0123-<variant>' | |
| VARIANT="1.24.17-envsubst-git-jq-kustomize-sops-ssh-yq" | |
| REF_VARIANT="${REF}-${VARIANT}" | |
| REF_SHA_VARIANT="${REF}-${SHA}-${VARIANT}" | |
| # Pass variables to next step | |
| echo "VARIANT_BUILD_DIR=$VARIANT_BUILD_DIR" >> $GITHUB_OUTPUT | |
| echo "VARIANT=$VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_VARIANT=$REF_VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_SHA_VARIANT=$REF_SHA_VARIANT" >> $GITHUB_OUTPUT | |
| - name: 1.24.17-envsubst-git-jq-kustomize-sops-ssh-yq - Build (PRs) | |
| # Run only on pull requests | |
| if: github.event_name == 'pull_request' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.24.17-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: false | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-24-17-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-24-17-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.24.17-envsubst-git-jq-kustomize-sops-ssh-yq - Build and push (master) | |
| # Run only on master | |
| if: github.ref == 'refs/heads/master' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.24.17-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-24-17-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-24-17-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.24.17-envsubst-git-jq-kustomize-sops-ssh-yq - Build and push (release) | |
| if: startsWith(github.ref, 'refs/tags/') | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.24.17-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-24-17-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-24-17-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-24-17-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| # Temp fix | |
| # https://github.com/docker/build-push-action/issues/252 | |
| # https://github.com/moby/buildkit/issues/1896 | |
| - name: Move cache | |
| run: | | |
| rm -rf /tmp/.buildx-cache | |
| mv /tmp/.buildx-cache-new /tmp/.buildx-cache | |
| build-1-23-17: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Display system info (linux) | |
| run: | | |
| set -e | |
| hostname | |
| whoami | |
| cat /etc/*release | |
| lscpu | |
| free | |
| df -h | |
| pwd | |
| docker info | |
| docker version | |
| # See: https://github.com/docker/build-push-action/blob/v2.6.1/docs/advanced/cache.md#github-cache | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v3 | |
| - name: Set up Docker Buildx | |
| id: buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Cache Docker layers | |
| uses: actions/cache@v4 | |
| with: | |
| path: /tmp/.buildx-cache | |
| key: ${{ runner.os }}-buildx-1.23.17-${{ github.sha }} | |
| restore-keys: | | |
| ${{ runner.os }}-buildx-1.23.17- | |
| ${{ runner.os }}-buildx- | |
| - name: Login to Docker Hub registry | |
| # Run on master and tags | |
| if: github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/') | |
| uses: docker/login-action@v3 | |
| with: | |
| username: ${{ secrets.DOCKERHUB_REGISTRY_USER }} | |
| password: ${{ secrets.DOCKERHUB_REGISTRY_PASSWORD }} | |
| # This step generates the docker tags | |
| - name: Prepare | |
| id: prep-1-23-17 | |
| run: | | |
| set -e | |
| # Get ref, i.e. <branch_name> from refs/heads/<branch_name>, or <tag-name> from refs/tags/<tag_name>. E.g. 'master' or 'v0.0.0' | |
| REF=$( echo "${GITHUB_REF}" | rev | cut -d '/' -f 1 | rev ) | |
| # Get short commit hash E.g. 'abc0123' | |
| SHA=$( echo "${GITHUB_SHA}" | cut -c1-7 ) | |
| # Generate docker image tags | |
| # E.g. 'v0.0.0-<variant>' and 'v0.0.0-abc0123-<variant>' | |
| # E.g. 'master-<variant>' and 'master-abc0123-<variant>' | |
| VARIANT="1.23.17" | |
| REF_VARIANT="${REF}-${VARIANT}" | |
| REF_SHA_VARIANT="${REF}-${SHA}-${VARIANT}" | |
| # Pass variables to next step | |
| echo "VARIANT_BUILD_DIR=$VARIANT_BUILD_DIR" >> $GITHUB_OUTPUT | |
| echo "VARIANT=$VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_VARIANT=$REF_VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_SHA_VARIANT=$REF_SHA_VARIANT" >> $GITHUB_OUTPUT | |
| - name: 1.23.17 - Build (PRs) | |
| # Run only on pull requests | |
| if: github.event_name == 'pull_request' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.23.17 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: false | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-23-17.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-23-17.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.23.17 - Build and push (master) | |
| # Run only on master | |
| if: github.ref == 'refs/heads/master' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.23.17 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-23-17.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-23-17.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.23.17 - Build and push (release) | |
| if: startsWith(github.ref, 'refs/tags/') | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.23.17 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-23-17.outputs.VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-23-17.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-23-17.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| # This step generates the docker tags | |
| - name: Prepare | |
| id: prep-1-23-17-envsubst-git-jq-kustomize-sops-ssh-yq | |
| run: | | |
| set -e | |
| # Get ref, i.e. <branch_name> from refs/heads/<branch_name>, or <tag-name> from refs/tags/<tag_name>. E.g. 'master' or 'v0.0.0' | |
| REF=$( echo "${GITHUB_REF}" | rev | cut -d '/' -f 1 | rev ) | |
| # Get short commit hash E.g. 'abc0123' | |
| SHA=$( echo "${GITHUB_SHA}" | cut -c1-7 ) | |
| # Generate docker image tags | |
| # E.g. 'v0.0.0-<variant>' and 'v0.0.0-abc0123-<variant>' | |
| # E.g. 'master-<variant>' and 'master-abc0123-<variant>' | |
| VARIANT="1.23.17-envsubst-git-jq-kustomize-sops-ssh-yq" | |
| REF_VARIANT="${REF}-${VARIANT}" | |
| REF_SHA_VARIANT="${REF}-${SHA}-${VARIANT}" | |
| # Pass variables to next step | |
| echo "VARIANT_BUILD_DIR=$VARIANT_BUILD_DIR" >> $GITHUB_OUTPUT | |
| echo "VARIANT=$VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_VARIANT=$REF_VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_SHA_VARIANT=$REF_SHA_VARIANT" >> $GITHUB_OUTPUT | |
| - name: 1.23.17-envsubst-git-jq-kustomize-sops-ssh-yq - Build (PRs) | |
| # Run only on pull requests | |
| if: github.event_name == 'pull_request' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.23.17-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: false | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-23-17-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-23-17-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.23.17-envsubst-git-jq-kustomize-sops-ssh-yq - Build and push (master) | |
| # Run only on master | |
| if: github.ref == 'refs/heads/master' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.23.17-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-23-17-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-23-17-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.23.17-envsubst-git-jq-kustomize-sops-ssh-yq - Build and push (release) | |
| if: startsWith(github.ref, 'refs/tags/') | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.23.17-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-23-17-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-23-17-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-23-17-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| # Temp fix | |
| # https://github.com/docker/build-push-action/issues/252 | |
| # https://github.com/moby/buildkit/issues/1896 | |
| - name: Move cache | |
| run: | | |
| rm -rf /tmp/.buildx-cache | |
| mv /tmp/.buildx-cache-new /tmp/.buildx-cache | |
| build-1-22-17: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Display system info (linux) | |
| run: | | |
| set -e | |
| hostname | |
| whoami | |
| cat /etc/*release | |
| lscpu | |
| free | |
| df -h | |
| pwd | |
| docker info | |
| docker version | |
| # See: https://github.com/docker/build-push-action/blob/v2.6.1/docs/advanced/cache.md#github-cache | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v3 | |
| - name: Set up Docker Buildx | |
| id: buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Cache Docker layers | |
| uses: actions/cache@v4 | |
| with: | |
| path: /tmp/.buildx-cache | |
| key: ${{ runner.os }}-buildx-1.22.17-${{ github.sha }} | |
| restore-keys: | | |
| ${{ runner.os }}-buildx-1.22.17- | |
| ${{ runner.os }}-buildx- | |
| - name: Login to Docker Hub registry | |
| # Run on master and tags | |
| if: github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/') | |
| uses: docker/login-action@v3 | |
| with: | |
| username: ${{ secrets.DOCKERHUB_REGISTRY_USER }} | |
| password: ${{ secrets.DOCKERHUB_REGISTRY_PASSWORD }} | |
| # This step generates the docker tags | |
| - name: Prepare | |
| id: prep-1-22-17 | |
| run: | | |
| set -e | |
| # Get ref, i.e. <branch_name> from refs/heads/<branch_name>, or <tag-name> from refs/tags/<tag_name>. E.g. 'master' or 'v0.0.0' | |
| REF=$( echo "${GITHUB_REF}" | rev | cut -d '/' -f 1 | rev ) | |
| # Get short commit hash E.g. 'abc0123' | |
| SHA=$( echo "${GITHUB_SHA}" | cut -c1-7 ) | |
| # Generate docker image tags | |
| # E.g. 'v0.0.0-<variant>' and 'v0.0.0-abc0123-<variant>' | |
| # E.g. 'master-<variant>' and 'master-abc0123-<variant>' | |
| VARIANT="1.22.17" | |
| REF_VARIANT="${REF}-${VARIANT}" | |
| REF_SHA_VARIANT="${REF}-${SHA}-${VARIANT}" | |
| # Pass variables to next step | |
| echo "VARIANT_BUILD_DIR=$VARIANT_BUILD_DIR" >> $GITHUB_OUTPUT | |
| echo "VARIANT=$VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_VARIANT=$REF_VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_SHA_VARIANT=$REF_SHA_VARIANT" >> $GITHUB_OUTPUT | |
| - name: 1.22.17 - Build (PRs) | |
| # Run only on pull requests | |
| if: github.event_name == 'pull_request' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.22.17 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: false | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-22-17.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-22-17.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.22.17 - Build and push (master) | |
| # Run only on master | |
| if: github.ref == 'refs/heads/master' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.22.17 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-22-17.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-22-17.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.22.17 - Build and push (release) | |
| if: startsWith(github.ref, 'refs/tags/') | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.22.17 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-22-17.outputs.VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-22-17.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-22-17.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| # This step generates the docker tags | |
| - name: Prepare | |
| id: prep-1-22-17-envsubst-git-jq-kustomize-sops-ssh-yq | |
| run: | | |
| set -e | |
| # Get ref, i.e. <branch_name> from refs/heads/<branch_name>, or <tag-name> from refs/tags/<tag_name>. E.g. 'master' or 'v0.0.0' | |
| REF=$( echo "${GITHUB_REF}" | rev | cut -d '/' -f 1 | rev ) | |
| # Get short commit hash E.g. 'abc0123' | |
| SHA=$( echo "${GITHUB_SHA}" | cut -c1-7 ) | |
| # Generate docker image tags | |
| # E.g. 'v0.0.0-<variant>' and 'v0.0.0-abc0123-<variant>' | |
| # E.g. 'master-<variant>' and 'master-abc0123-<variant>' | |
| VARIANT="1.22.17-envsubst-git-jq-kustomize-sops-ssh-yq" | |
| REF_VARIANT="${REF}-${VARIANT}" | |
| REF_SHA_VARIANT="${REF}-${SHA}-${VARIANT}" | |
| # Pass variables to next step | |
| echo "VARIANT_BUILD_DIR=$VARIANT_BUILD_DIR" >> $GITHUB_OUTPUT | |
| echo "VARIANT=$VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_VARIANT=$REF_VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_SHA_VARIANT=$REF_SHA_VARIANT" >> $GITHUB_OUTPUT | |
| - name: 1.22.17-envsubst-git-jq-kustomize-sops-ssh-yq - Build (PRs) | |
| # Run only on pull requests | |
| if: github.event_name == 'pull_request' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.22.17-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: false | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-22-17-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-22-17-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.22.17-envsubst-git-jq-kustomize-sops-ssh-yq - Build and push (master) | |
| # Run only on master | |
| if: github.ref == 'refs/heads/master' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.22.17-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-22-17-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-22-17-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.22.17-envsubst-git-jq-kustomize-sops-ssh-yq - Build and push (release) | |
| if: startsWith(github.ref, 'refs/tags/') | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.22.17-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-22-17-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-22-17-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-22-17-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| # Temp fix | |
| # https://github.com/docker/build-push-action/issues/252 | |
| # https://github.com/moby/buildkit/issues/1896 | |
| - name: Move cache | |
| run: | | |
| rm -rf /tmp/.buildx-cache | |
| mv /tmp/.buildx-cache-new /tmp/.buildx-cache | |
| build-1-21-14: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Display system info (linux) | |
| run: | | |
| set -e | |
| hostname | |
| whoami | |
| cat /etc/*release | |
| lscpu | |
| free | |
| df -h | |
| pwd | |
| docker info | |
| docker version | |
| # See: https://github.com/docker/build-push-action/blob/v2.6.1/docs/advanced/cache.md#github-cache | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v3 | |
| - name: Set up Docker Buildx | |
| id: buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Cache Docker layers | |
| uses: actions/cache@v4 | |
| with: | |
| path: /tmp/.buildx-cache | |
| key: ${{ runner.os }}-buildx-1.21.14-${{ github.sha }} | |
| restore-keys: | | |
| ${{ runner.os }}-buildx-1.21.14- | |
| ${{ runner.os }}-buildx- | |
| - name: Login to Docker Hub registry | |
| # Run on master and tags | |
| if: github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/') | |
| uses: docker/login-action@v3 | |
| with: | |
| username: ${{ secrets.DOCKERHUB_REGISTRY_USER }} | |
| password: ${{ secrets.DOCKERHUB_REGISTRY_PASSWORD }} | |
| # This step generates the docker tags | |
| - name: Prepare | |
| id: prep-1-21-14 | |
| run: | | |
| set -e | |
| # Get ref, i.e. <branch_name> from refs/heads/<branch_name>, or <tag-name> from refs/tags/<tag_name>. E.g. 'master' or 'v0.0.0' | |
| REF=$( echo "${GITHUB_REF}" | rev | cut -d '/' -f 1 | rev ) | |
| # Get short commit hash E.g. 'abc0123' | |
| SHA=$( echo "${GITHUB_SHA}" | cut -c1-7 ) | |
| # Generate docker image tags | |
| # E.g. 'v0.0.0-<variant>' and 'v0.0.0-abc0123-<variant>' | |
| # E.g. 'master-<variant>' and 'master-abc0123-<variant>' | |
| VARIANT="1.21.14" | |
| REF_VARIANT="${REF}-${VARIANT}" | |
| REF_SHA_VARIANT="${REF}-${SHA}-${VARIANT}" | |
| # Pass variables to next step | |
| echo "VARIANT_BUILD_DIR=$VARIANT_BUILD_DIR" >> $GITHUB_OUTPUT | |
| echo "VARIANT=$VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_VARIANT=$REF_VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_SHA_VARIANT=$REF_SHA_VARIANT" >> $GITHUB_OUTPUT | |
| - name: 1.21.14 - Build (PRs) | |
| # Run only on pull requests | |
| if: github.event_name == 'pull_request' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.21.14 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: false | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-21-14.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-21-14.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.21.14 - Build and push (master) | |
| # Run only on master | |
| if: github.ref == 'refs/heads/master' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.21.14 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-21-14.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-21-14.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.21.14 - Build and push (release) | |
| if: startsWith(github.ref, 'refs/tags/') | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.21.14 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-21-14.outputs.VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-21-14.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-21-14.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| # This step generates the docker tags | |
| - name: Prepare | |
| id: prep-1-21-14-envsubst-git-jq-kustomize-sops-ssh-yq | |
| run: | | |
| set -e | |
| # Get ref, i.e. <branch_name> from refs/heads/<branch_name>, or <tag-name> from refs/tags/<tag_name>. E.g. 'master' or 'v0.0.0' | |
| REF=$( echo "${GITHUB_REF}" | rev | cut -d '/' -f 1 | rev ) | |
| # Get short commit hash E.g. 'abc0123' | |
| SHA=$( echo "${GITHUB_SHA}" | cut -c1-7 ) | |
| # Generate docker image tags | |
| # E.g. 'v0.0.0-<variant>' and 'v0.0.0-abc0123-<variant>' | |
| # E.g. 'master-<variant>' and 'master-abc0123-<variant>' | |
| VARIANT="1.21.14-envsubst-git-jq-kustomize-sops-ssh-yq" | |
| REF_VARIANT="${REF}-${VARIANT}" | |
| REF_SHA_VARIANT="${REF}-${SHA}-${VARIANT}" | |
| # Pass variables to next step | |
| echo "VARIANT_BUILD_DIR=$VARIANT_BUILD_DIR" >> $GITHUB_OUTPUT | |
| echo "VARIANT=$VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_VARIANT=$REF_VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_SHA_VARIANT=$REF_SHA_VARIANT" >> $GITHUB_OUTPUT | |
| - name: 1.21.14-envsubst-git-jq-kustomize-sops-ssh-yq - Build (PRs) | |
| # Run only on pull requests | |
| if: github.event_name == 'pull_request' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.21.14-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: false | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-21-14-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-21-14-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.21.14-envsubst-git-jq-kustomize-sops-ssh-yq - Build and push (master) | |
| # Run only on master | |
| if: github.ref == 'refs/heads/master' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.21.14-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-21-14-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-21-14-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.21.14-envsubst-git-jq-kustomize-sops-ssh-yq - Build and push (release) | |
| if: startsWith(github.ref, 'refs/tags/') | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.21.14-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-21-14-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-21-14-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-21-14-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| # Temp fix | |
| # https://github.com/docker/build-push-action/issues/252 | |
| # https://github.com/moby/buildkit/issues/1896 | |
| - name: Move cache | |
| run: | | |
| rm -rf /tmp/.buildx-cache | |
| mv /tmp/.buildx-cache-new /tmp/.buildx-cache | |
| build-1-20-15: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Display system info (linux) | |
| run: | | |
| set -e | |
| hostname | |
| whoami | |
| cat /etc/*release | |
| lscpu | |
| free | |
| df -h | |
| pwd | |
| docker info | |
| docker version | |
| # See: https://github.com/docker/build-push-action/blob/v2.6.1/docs/advanced/cache.md#github-cache | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v3 | |
| - name: Set up Docker Buildx | |
| id: buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Cache Docker layers | |
| uses: actions/cache@v4 | |
| with: | |
| path: /tmp/.buildx-cache | |
| key: ${{ runner.os }}-buildx-1.20.15-${{ github.sha }} | |
| restore-keys: | | |
| ${{ runner.os }}-buildx-1.20.15- | |
| ${{ runner.os }}-buildx- | |
| - name: Login to Docker Hub registry | |
| # Run on master and tags | |
| if: github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/') | |
| uses: docker/login-action@v3 | |
| with: | |
| username: ${{ secrets.DOCKERHUB_REGISTRY_USER }} | |
| password: ${{ secrets.DOCKERHUB_REGISTRY_PASSWORD }} | |
| # This step generates the docker tags | |
| - name: Prepare | |
| id: prep-1-20-15 | |
| run: | | |
| set -e | |
| # Get ref, i.e. <branch_name> from refs/heads/<branch_name>, or <tag-name> from refs/tags/<tag_name>. E.g. 'master' or 'v0.0.0' | |
| REF=$( echo "${GITHUB_REF}" | rev | cut -d '/' -f 1 | rev ) | |
| # Get short commit hash E.g. 'abc0123' | |
| SHA=$( echo "${GITHUB_SHA}" | cut -c1-7 ) | |
| # Generate docker image tags | |
| # E.g. 'v0.0.0-<variant>' and 'v0.0.0-abc0123-<variant>' | |
| # E.g. 'master-<variant>' and 'master-abc0123-<variant>' | |
| VARIANT="1.20.15" | |
| REF_VARIANT="${REF}-${VARIANT}" | |
| REF_SHA_VARIANT="${REF}-${SHA}-${VARIANT}" | |
| # Pass variables to next step | |
| echo "VARIANT_BUILD_DIR=$VARIANT_BUILD_DIR" >> $GITHUB_OUTPUT | |
| echo "VARIANT=$VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_VARIANT=$REF_VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_SHA_VARIANT=$REF_SHA_VARIANT" >> $GITHUB_OUTPUT | |
| - name: 1.20.15 - Build (PRs) | |
| # Run only on pull requests | |
| if: github.event_name == 'pull_request' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.20.15 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: false | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-20-15.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-20-15.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.20.15 - Build and push (master) | |
| # Run only on master | |
| if: github.ref == 'refs/heads/master' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.20.15 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-20-15.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-20-15.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.20.15 - Build and push (release) | |
| if: startsWith(github.ref, 'refs/tags/') | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.20.15 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-20-15.outputs.VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-20-15.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-20-15.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| # This step generates the docker tags | |
| - name: Prepare | |
| id: prep-1-20-15-envsubst-git-jq-kustomize-sops-ssh-yq | |
| run: | | |
| set -e | |
| # Get ref, i.e. <branch_name> from refs/heads/<branch_name>, or <tag-name> from refs/tags/<tag_name>. E.g. 'master' or 'v0.0.0' | |
| REF=$( echo "${GITHUB_REF}" | rev | cut -d '/' -f 1 | rev ) | |
| # Get short commit hash E.g. 'abc0123' | |
| SHA=$( echo "${GITHUB_SHA}" | cut -c1-7 ) | |
| # Generate docker image tags | |
| # E.g. 'v0.0.0-<variant>' and 'v0.0.0-abc0123-<variant>' | |
| # E.g. 'master-<variant>' and 'master-abc0123-<variant>' | |
| VARIANT="1.20.15-envsubst-git-jq-kustomize-sops-ssh-yq" | |
| REF_VARIANT="${REF}-${VARIANT}" | |
| REF_SHA_VARIANT="${REF}-${SHA}-${VARIANT}" | |
| # Pass variables to next step | |
| echo "VARIANT_BUILD_DIR=$VARIANT_BUILD_DIR" >> $GITHUB_OUTPUT | |
| echo "VARIANT=$VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_VARIANT=$REF_VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_SHA_VARIANT=$REF_SHA_VARIANT" >> $GITHUB_OUTPUT | |
| - name: 1.20.15-envsubst-git-jq-kustomize-sops-ssh-yq - Build (PRs) | |
| # Run only on pull requests | |
| if: github.event_name == 'pull_request' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.20.15-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: false | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-20-15-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-20-15-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.20.15-envsubst-git-jq-kustomize-sops-ssh-yq - Build and push (master) | |
| # Run only on master | |
| if: github.ref == 'refs/heads/master' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.20.15-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-20-15-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-20-15-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.20.15-envsubst-git-jq-kustomize-sops-ssh-yq - Build and push (release) | |
| if: startsWith(github.ref, 'refs/tags/') | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.20.15-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-20-15-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-20-15-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-20-15-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| # Temp fix | |
| # https://github.com/docker/build-push-action/issues/252 | |
| # https://github.com/moby/buildkit/issues/1896 | |
| - name: Move cache | |
| run: | | |
| rm -rf /tmp/.buildx-cache | |
| mv /tmp/.buildx-cache-new /tmp/.buildx-cache | |
| build-1-19-16: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Display system info (linux) | |
| run: | | |
| set -e | |
| hostname | |
| whoami | |
| cat /etc/*release | |
| lscpu | |
| free | |
| df -h | |
| pwd | |
| docker info | |
| docker version | |
| # See: https://github.com/docker/build-push-action/blob/v2.6.1/docs/advanced/cache.md#github-cache | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v3 | |
| - name: Set up Docker Buildx | |
| id: buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Cache Docker layers | |
| uses: actions/cache@v4 | |
| with: | |
| path: /tmp/.buildx-cache | |
| key: ${{ runner.os }}-buildx-1.19.16-${{ github.sha }} | |
| restore-keys: | | |
| ${{ runner.os }}-buildx-1.19.16- | |
| ${{ runner.os }}-buildx- | |
| - name: Login to Docker Hub registry | |
| # Run on master and tags | |
| if: github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/') | |
| uses: docker/login-action@v3 | |
| with: | |
| username: ${{ secrets.DOCKERHUB_REGISTRY_USER }} | |
| password: ${{ secrets.DOCKERHUB_REGISTRY_PASSWORD }} | |
| # This step generates the docker tags | |
| - name: Prepare | |
| id: prep-1-19-16 | |
| run: | | |
| set -e | |
| # Get ref, i.e. <branch_name> from refs/heads/<branch_name>, or <tag-name> from refs/tags/<tag_name>. E.g. 'master' or 'v0.0.0' | |
| REF=$( echo "${GITHUB_REF}" | rev | cut -d '/' -f 1 | rev ) | |
| # Get short commit hash E.g. 'abc0123' | |
| SHA=$( echo "${GITHUB_SHA}" | cut -c1-7 ) | |
| # Generate docker image tags | |
| # E.g. 'v0.0.0-<variant>' and 'v0.0.0-abc0123-<variant>' | |
| # E.g. 'master-<variant>' and 'master-abc0123-<variant>' | |
| VARIANT="1.19.16" | |
| REF_VARIANT="${REF}-${VARIANT}" | |
| REF_SHA_VARIANT="${REF}-${SHA}-${VARIANT}" | |
| # Pass variables to next step | |
| echo "VARIANT_BUILD_DIR=$VARIANT_BUILD_DIR" >> $GITHUB_OUTPUT | |
| echo "VARIANT=$VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_VARIANT=$REF_VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_SHA_VARIANT=$REF_SHA_VARIANT" >> $GITHUB_OUTPUT | |
| - name: 1.19.16 - Build (PRs) | |
| # Run only on pull requests | |
| if: github.event_name == 'pull_request' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.19.16 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: false | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-19-16.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-19-16.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.19.16 - Build and push (master) | |
| # Run only on master | |
| if: github.ref == 'refs/heads/master' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.19.16 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-19-16.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-19-16.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.19.16 - Build and push (release) | |
| if: startsWith(github.ref, 'refs/tags/') | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.19.16 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-19-16.outputs.VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-19-16.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-19-16.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| # This step generates the docker tags | |
| - name: Prepare | |
| id: prep-1-19-16-envsubst-git-jq-kustomize-sops-ssh-yq | |
| run: | | |
| set -e | |
| # Get ref, i.e. <branch_name> from refs/heads/<branch_name>, or <tag-name> from refs/tags/<tag_name>. E.g. 'master' or 'v0.0.0' | |
| REF=$( echo "${GITHUB_REF}" | rev | cut -d '/' -f 1 | rev ) | |
| # Get short commit hash E.g. 'abc0123' | |
| SHA=$( echo "${GITHUB_SHA}" | cut -c1-7 ) | |
| # Generate docker image tags | |
| # E.g. 'v0.0.0-<variant>' and 'v0.0.0-abc0123-<variant>' | |
| # E.g. 'master-<variant>' and 'master-abc0123-<variant>' | |
| VARIANT="1.19.16-envsubst-git-jq-kustomize-sops-ssh-yq" | |
| REF_VARIANT="${REF}-${VARIANT}" | |
| REF_SHA_VARIANT="${REF}-${SHA}-${VARIANT}" | |
| # Pass variables to next step | |
| echo "VARIANT_BUILD_DIR=$VARIANT_BUILD_DIR" >> $GITHUB_OUTPUT | |
| echo "VARIANT=$VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_VARIANT=$REF_VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_SHA_VARIANT=$REF_SHA_VARIANT" >> $GITHUB_OUTPUT | |
| - name: 1.19.16-envsubst-git-jq-kustomize-sops-ssh-yq - Build (PRs) | |
| # Run only on pull requests | |
| if: github.event_name == 'pull_request' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.19.16-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: false | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-19-16-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-19-16-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.19.16-envsubst-git-jq-kustomize-sops-ssh-yq - Build and push (master) | |
| # Run only on master | |
| if: github.ref == 'refs/heads/master' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.19.16-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-19-16-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-19-16-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.19.16-envsubst-git-jq-kustomize-sops-ssh-yq - Build and push (release) | |
| if: startsWith(github.ref, 'refs/tags/') | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.19.16-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-19-16-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-19-16-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-19-16-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| # Temp fix | |
| # https://github.com/docker/build-push-action/issues/252 | |
| # https://github.com/moby/buildkit/issues/1896 | |
| - name: Move cache | |
| run: | | |
| rm -rf /tmp/.buildx-cache | |
| mv /tmp/.buildx-cache-new /tmp/.buildx-cache | |
| build-1-18-20: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Display system info (linux) | |
| run: | | |
| set -e | |
| hostname | |
| whoami | |
| cat /etc/*release | |
| lscpu | |
| free | |
| df -h | |
| pwd | |
| docker info | |
| docker version | |
| # See: https://github.com/docker/build-push-action/blob/v2.6.1/docs/advanced/cache.md#github-cache | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v3 | |
| - name: Set up Docker Buildx | |
| id: buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Cache Docker layers | |
| uses: actions/cache@v4 | |
| with: | |
| path: /tmp/.buildx-cache | |
| key: ${{ runner.os }}-buildx-1.18.20-${{ github.sha }} | |
| restore-keys: | | |
| ${{ runner.os }}-buildx-1.18.20- | |
| ${{ runner.os }}-buildx- | |
| - name: Login to Docker Hub registry | |
| # Run on master and tags | |
| if: github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/') | |
| uses: docker/login-action@v3 | |
| with: | |
| username: ${{ secrets.DOCKERHUB_REGISTRY_USER }} | |
| password: ${{ secrets.DOCKERHUB_REGISTRY_PASSWORD }} | |
| # This step generates the docker tags | |
| - name: Prepare | |
| id: prep-1-18-20 | |
| run: | | |
| set -e | |
| # Get ref, i.e. <branch_name> from refs/heads/<branch_name>, or <tag-name> from refs/tags/<tag_name>. E.g. 'master' or 'v0.0.0' | |
| REF=$( echo "${GITHUB_REF}" | rev | cut -d '/' -f 1 | rev ) | |
| # Get short commit hash E.g. 'abc0123' | |
| SHA=$( echo "${GITHUB_SHA}" | cut -c1-7 ) | |
| # Generate docker image tags | |
| # E.g. 'v0.0.0-<variant>' and 'v0.0.0-abc0123-<variant>' | |
| # E.g. 'master-<variant>' and 'master-abc0123-<variant>' | |
| VARIANT="1.18.20" | |
| REF_VARIANT="${REF}-${VARIANT}" | |
| REF_SHA_VARIANT="${REF}-${SHA}-${VARIANT}" | |
| # Pass variables to next step | |
| echo "VARIANT_BUILD_DIR=$VARIANT_BUILD_DIR" >> $GITHUB_OUTPUT | |
| echo "VARIANT=$VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_VARIANT=$REF_VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_SHA_VARIANT=$REF_SHA_VARIANT" >> $GITHUB_OUTPUT | |
| - name: 1.18.20 - Build (PRs) | |
| # Run only on pull requests | |
| if: github.event_name == 'pull_request' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.18.20 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: false | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-18-20.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-18-20.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.18.20 - Build and push (master) | |
| # Run only on master | |
| if: github.ref == 'refs/heads/master' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.18.20 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-18-20.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-18-20.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.18.20 - Build and push (release) | |
| if: startsWith(github.ref, 'refs/tags/') | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.18.20 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-18-20.outputs.VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-18-20.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-18-20.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| # This step generates the docker tags | |
| - name: Prepare | |
| id: prep-1-18-20-envsubst-git-jq-kustomize-sops-ssh-yq | |
| run: | | |
| set -e | |
| # Get ref, i.e. <branch_name> from refs/heads/<branch_name>, or <tag-name> from refs/tags/<tag_name>. E.g. 'master' or 'v0.0.0' | |
| REF=$( echo "${GITHUB_REF}" | rev | cut -d '/' -f 1 | rev ) | |
| # Get short commit hash E.g. 'abc0123' | |
| SHA=$( echo "${GITHUB_SHA}" | cut -c1-7 ) | |
| # Generate docker image tags | |
| # E.g. 'v0.0.0-<variant>' and 'v0.0.0-abc0123-<variant>' | |
| # E.g. 'master-<variant>' and 'master-abc0123-<variant>' | |
| VARIANT="1.18.20-envsubst-git-jq-kustomize-sops-ssh-yq" | |
| REF_VARIANT="${REF}-${VARIANT}" | |
| REF_SHA_VARIANT="${REF}-${SHA}-${VARIANT}" | |
| # Pass variables to next step | |
| echo "VARIANT_BUILD_DIR=$VARIANT_BUILD_DIR" >> $GITHUB_OUTPUT | |
| echo "VARIANT=$VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_VARIANT=$REF_VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_SHA_VARIANT=$REF_SHA_VARIANT" >> $GITHUB_OUTPUT | |
| - name: 1.18.20-envsubst-git-jq-kustomize-sops-ssh-yq - Build (PRs) | |
| # Run only on pull requests | |
| if: github.event_name == 'pull_request' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.18.20-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: false | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-18-20-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-18-20-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.18.20-envsubst-git-jq-kustomize-sops-ssh-yq - Build and push (master) | |
| # Run only on master | |
| if: github.ref == 'refs/heads/master' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.18.20-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-18-20-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-18-20-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.18.20-envsubst-git-jq-kustomize-sops-ssh-yq - Build and push (release) | |
| if: startsWith(github.ref, 'refs/tags/') | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.18.20-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-18-20-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-18-20-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-18-20-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| # Temp fix | |
| # https://github.com/docker/build-push-action/issues/252 | |
| # https://github.com/moby/buildkit/issues/1896 | |
| - name: Move cache | |
| run: | | |
| rm -rf /tmp/.buildx-cache | |
| mv /tmp/.buildx-cache-new /tmp/.buildx-cache | |
| build-1-17-17: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Display system info (linux) | |
| run: | | |
| set -e | |
| hostname | |
| whoami | |
| cat /etc/*release | |
| lscpu | |
| free | |
| df -h | |
| pwd | |
| docker info | |
| docker version | |
| # See: https://github.com/docker/build-push-action/blob/v2.6.1/docs/advanced/cache.md#github-cache | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v3 | |
| - name: Set up Docker Buildx | |
| id: buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Cache Docker layers | |
| uses: actions/cache@v4 | |
| with: | |
| path: /tmp/.buildx-cache | |
| key: ${{ runner.os }}-buildx-1.17.17-${{ github.sha }} | |
| restore-keys: | | |
| ${{ runner.os }}-buildx-1.17.17- | |
| ${{ runner.os }}-buildx- | |
| - name: Login to Docker Hub registry | |
| # Run on master and tags | |
| if: github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/') | |
| uses: docker/login-action@v3 | |
| with: | |
| username: ${{ secrets.DOCKERHUB_REGISTRY_USER }} | |
| password: ${{ secrets.DOCKERHUB_REGISTRY_PASSWORD }} | |
| # This step generates the docker tags | |
| - name: Prepare | |
| id: prep-1-17-17 | |
| run: | | |
| set -e | |
| # Get ref, i.e. <branch_name> from refs/heads/<branch_name>, or <tag-name> from refs/tags/<tag_name>. E.g. 'master' or 'v0.0.0' | |
| REF=$( echo "${GITHUB_REF}" | rev | cut -d '/' -f 1 | rev ) | |
| # Get short commit hash E.g. 'abc0123' | |
| SHA=$( echo "${GITHUB_SHA}" | cut -c1-7 ) | |
| # Generate docker image tags | |
| # E.g. 'v0.0.0-<variant>' and 'v0.0.0-abc0123-<variant>' | |
| # E.g. 'master-<variant>' and 'master-abc0123-<variant>' | |
| VARIANT="1.17.17" | |
| REF_VARIANT="${REF}-${VARIANT}" | |
| REF_SHA_VARIANT="${REF}-${SHA}-${VARIANT}" | |
| # Pass variables to next step | |
| echo "VARIANT_BUILD_DIR=$VARIANT_BUILD_DIR" >> $GITHUB_OUTPUT | |
| echo "VARIANT=$VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_VARIANT=$REF_VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_SHA_VARIANT=$REF_SHA_VARIANT" >> $GITHUB_OUTPUT | |
| - name: 1.17.17 - Build (PRs) | |
| # Run only on pull requests | |
| if: github.event_name == 'pull_request' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.17.17 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: false | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-17-17.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-17-17.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.17.17 - Build and push (master) | |
| # Run only on master | |
| if: github.ref == 'refs/heads/master' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.17.17 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-17-17.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-17-17.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.17.17 - Build and push (release) | |
| if: startsWith(github.ref, 'refs/tags/') | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.17.17 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-17-17.outputs.VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-17-17.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-17-17.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| # This step generates the docker tags | |
| - name: Prepare | |
| id: prep-1-17-17-envsubst-git-jq-kustomize-sops-ssh-yq | |
| run: | | |
| set -e | |
| # Get ref, i.e. <branch_name> from refs/heads/<branch_name>, or <tag-name> from refs/tags/<tag_name>. E.g. 'master' or 'v0.0.0' | |
| REF=$( echo "${GITHUB_REF}" | rev | cut -d '/' -f 1 | rev ) | |
| # Get short commit hash E.g. 'abc0123' | |
| SHA=$( echo "${GITHUB_SHA}" | cut -c1-7 ) | |
| # Generate docker image tags | |
| # E.g. 'v0.0.0-<variant>' and 'v0.0.0-abc0123-<variant>' | |
| # E.g. 'master-<variant>' and 'master-abc0123-<variant>' | |
| VARIANT="1.17.17-envsubst-git-jq-kustomize-sops-ssh-yq" | |
| REF_VARIANT="${REF}-${VARIANT}" | |
| REF_SHA_VARIANT="${REF}-${SHA}-${VARIANT}" | |
| # Pass variables to next step | |
| echo "VARIANT_BUILD_DIR=$VARIANT_BUILD_DIR" >> $GITHUB_OUTPUT | |
| echo "VARIANT=$VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_VARIANT=$REF_VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_SHA_VARIANT=$REF_SHA_VARIANT" >> $GITHUB_OUTPUT | |
| - name: 1.17.17-envsubst-git-jq-kustomize-sops-ssh-yq - Build (PRs) | |
| # Run only on pull requests | |
| if: github.event_name == 'pull_request' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.17.17-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: false | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-17-17-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-17-17-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.17.17-envsubst-git-jq-kustomize-sops-ssh-yq - Build and push (master) | |
| # Run only on master | |
| if: github.ref == 'refs/heads/master' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.17.17-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-17-17-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-17-17-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.17.17-envsubst-git-jq-kustomize-sops-ssh-yq - Build and push (release) | |
| if: startsWith(github.ref, 'refs/tags/') | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.17.17-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-17-17-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-17-17-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-17-17-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| # Temp fix | |
| # https://github.com/docker/build-push-action/issues/252 | |
| # https://github.com/moby/buildkit/issues/1896 | |
| - name: Move cache | |
| run: | | |
| rm -rf /tmp/.buildx-cache | |
| mv /tmp/.buildx-cache-new /tmp/.buildx-cache | |
| build-1-16-15: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Display system info (linux) | |
| run: | | |
| set -e | |
| hostname | |
| whoami | |
| cat /etc/*release | |
| lscpu | |
| free | |
| df -h | |
| pwd | |
| docker info | |
| docker version | |
| # See: https://github.com/docker/build-push-action/blob/v2.6.1/docs/advanced/cache.md#github-cache | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v3 | |
| - name: Set up Docker Buildx | |
| id: buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Cache Docker layers | |
| uses: actions/cache@v4 | |
| with: | |
| path: /tmp/.buildx-cache | |
| key: ${{ runner.os }}-buildx-1.16.15-${{ github.sha }} | |
| restore-keys: | | |
| ${{ runner.os }}-buildx-1.16.15- | |
| ${{ runner.os }}-buildx- | |
| - name: Login to Docker Hub registry | |
| # Run on master and tags | |
| if: github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/') | |
| uses: docker/login-action@v3 | |
| with: | |
| username: ${{ secrets.DOCKERHUB_REGISTRY_USER }} | |
| password: ${{ secrets.DOCKERHUB_REGISTRY_PASSWORD }} | |
| # This step generates the docker tags | |
| - name: Prepare | |
| id: prep-1-16-15 | |
| run: | | |
| set -e | |
| # Get ref, i.e. <branch_name> from refs/heads/<branch_name>, or <tag-name> from refs/tags/<tag_name>. E.g. 'master' or 'v0.0.0' | |
| REF=$( echo "${GITHUB_REF}" | rev | cut -d '/' -f 1 | rev ) | |
| # Get short commit hash E.g. 'abc0123' | |
| SHA=$( echo "${GITHUB_SHA}" | cut -c1-7 ) | |
| # Generate docker image tags | |
| # E.g. 'v0.0.0-<variant>' and 'v0.0.0-abc0123-<variant>' | |
| # E.g. 'master-<variant>' and 'master-abc0123-<variant>' | |
| VARIANT="1.16.15" | |
| REF_VARIANT="${REF}-${VARIANT}" | |
| REF_SHA_VARIANT="${REF}-${SHA}-${VARIANT}" | |
| # Pass variables to next step | |
| echo "VARIANT_BUILD_DIR=$VARIANT_BUILD_DIR" >> $GITHUB_OUTPUT | |
| echo "VARIANT=$VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_VARIANT=$REF_VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_SHA_VARIANT=$REF_SHA_VARIANT" >> $GITHUB_OUTPUT | |
| - name: 1.16.15 - Build (PRs) | |
| # Run only on pull requests | |
| if: github.event_name == 'pull_request' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.16.15 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: false | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-16-15.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-16-15.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.16.15 - Build and push (master) | |
| # Run only on master | |
| if: github.ref == 'refs/heads/master' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.16.15 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-16-15.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-16-15.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.16.15 - Build and push (release) | |
| if: startsWith(github.ref, 'refs/tags/') | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.16.15 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-16-15.outputs.VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-16-15.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-16-15.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| # This step generates the docker tags | |
| - name: Prepare | |
| id: prep-1-16-15-envsubst-git-jq-kustomize-sops-ssh-yq | |
| run: | | |
| set -e | |
| # Get ref, i.e. <branch_name> from refs/heads/<branch_name>, or <tag-name> from refs/tags/<tag_name>. E.g. 'master' or 'v0.0.0' | |
| REF=$( echo "${GITHUB_REF}" | rev | cut -d '/' -f 1 | rev ) | |
| # Get short commit hash E.g. 'abc0123' | |
| SHA=$( echo "${GITHUB_SHA}" | cut -c1-7 ) | |
| # Generate docker image tags | |
| # E.g. 'v0.0.0-<variant>' and 'v0.0.0-abc0123-<variant>' | |
| # E.g. 'master-<variant>' and 'master-abc0123-<variant>' | |
| VARIANT="1.16.15-envsubst-git-jq-kustomize-sops-ssh-yq" | |
| REF_VARIANT="${REF}-${VARIANT}" | |
| REF_SHA_VARIANT="${REF}-${SHA}-${VARIANT}" | |
| # Pass variables to next step | |
| echo "VARIANT_BUILD_DIR=$VARIANT_BUILD_DIR" >> $GITHUB_OUTPUT | |
| echo "VARIANT=$VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_VARIANT=$REF_VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_SHA_VARIANT=$REF_SHA_VARIANT" >> $GITHUB_OUTPUT | |
| - name: 1.16.15-envsubst-git-jq-kustomize-sops-ssh-yq - Build (PRs) | |
| # Run only on pull requests | |
| if: github.event_name == 'pull_request' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.16.15-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: false | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-16-15-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-16-15-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.16.15-envsubst-git-jq-kustomize-sops-ssh-yq - Build and push (master) | |
| # Run only on master | |
| if: github.ref == 'refs/heads/master' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.16.15-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-16-15-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-16-15-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.16.15-envsubst-git-jq-kustomize-sops-ssh-yq - Build and push (release) | |
| if: startsWith(github.ref, 'refs/tags/') | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.16.15-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-16-15-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-16-15-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-16-15-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| # Temp fix | |
| # https://github.com/docker/build-push-action/issues/252 | |
| # https://github.com/moby/buildkit/issues/1896 | |
| - name: Move cache | |
| run: | | |
| rm -rf /tmp/.buildx-cache | |
| mv /tmp/.buildx-cache-new /tmp/.buildx-cache | |
| build-1-15-12: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Display system info (linux) | |
| run: | | |
| set -e | |
| hostname | |
| whoami | |
| cat /etc/*release | |
| lscpu | |
| free | |
| df -h | |
| pwd | |
| docker info | |
| docker version | |
| # See: https://github.com/docker/build-push-action/blob/v2.6.1/docs/advanced/cache.md#github-cache | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v3 | |
| - name: Set up Docker Buildx | |
| id: buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Cache Docker layers | |
| uses: actions/cache@v4 | |
| with: | |
| path: /tmp/.buildx-cache | |
| key: ${{ runner.os }}-buildx-1.15.12-${{ github.sha }} | |
| restore-keys: | | |
| ${{ runner.os }}-buildx-1.15.12- | |
| ${{ runner.os }}-buildx- | |
| - name: Login to Docker Hub registry | |
| # Run on master and tags | |
| if: github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/') | |
| uses: docker/login-action@v3 | |
| with: | |
| username: ${{ secrets.DOCKERHUB_REGISTRY_USER }} | |
| password: ${{ secrets.DOCKERHUB_REGISTRY_PASSWORD }} | |
| # This step generates the docker tags | |
| - name: Prepare | |
| id: prep-1-15-12 | |
| run: | | |
| set -e | |
| # Get ref, i.e. <branch_name> from refs/heads/<branch_name>, or <tag-name> from refs/tags/<tag_name>. E.g. 'master' or 'v0.0.0' | |
| REF=$( echo "${GITHUB_REF}" | rev | cut -d '/' -f 1 | rev ) | |
| # Get short commit hash E.g. 'abc0123' | |
| SHA=$( echo "${GITHUB_SHA}" | cut -c1-7 ) | |
| # Generate docker image tags | |
| # E.g. 'v0.0.0-<variant>' and 'v0.0.0-abc0123-<variant>' | |
| # E.g. 'master-<variant>' and 'master-abc0123-<variant>' | |
| VARIANT="1.15.12" | |
| REF_VARIANT="${REF}-${VARIANT}" | |
| REF_SHA_VARIANT="${REF}-${SHA}-${VARIANT}" | |
| # Pass variables to next step | |
| echo "VARIANT_BUILD_DIR=$VARIANT_BUILD_DIR" >> $GITHUB_OUTPUT | |
| echo "VARIANT=$VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_VARIANT=$REF_VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_SHA_VARIANT=$REF_SHA_VARIANT" >> $GITHUB_OUTPUT | |
| - name: 1.15.12 - Build (PRs) | |
| # Run only on pull requests | |
| if: github.event_name == 'pull_request' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.15.12 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: false | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-15-12.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-15-12.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.15.12 - Build and push (master) | |
| # Run only on master | |
| if: github.ref == 'refs/heads/master' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.15.12 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-15-12.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-15-12.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.15.12 - Build and push (release) | |
| if: startsWith(github.ref, 'refs/tags/') | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.15.12 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-15-12.outputs.VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-15-12.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-15-12.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| # This step generates the docker tags | |
| - name: Prepare | |
| id: prep-1-15-12-envsubst-git-jq-kustomize-sops-ssh-yq | |
| run: | | |
| set -e | |
| # Get ref, i.e. <branch_name> from refs/heads/<branch_name>, or <tag-name> from refs/tags/<tag_name>. E.g. 'master' or 'v0.0.0' | |
| REF=$( echo "${GITHUB_REF}" | rev | cut -d '/' -f 1 | rev ) | |
| # Get short commit hash E.g. 'abc0123' | |
| SHA=$( echo "${GITHUB_SHA}" | cut -c1-7 ) | |
| # Generate docker image tags | |
| # E.g. 'v0.0.0-<variant>' and 'v0.0.0-abc0123-<variant>' | |
| # E.g. 'master-<variant>' and 'master-abc0123-<variant>' | |
| VARIANT="1.15.12-envsubst-git-jq-kustomize-sops-ssh-yq" | |
| REF_VARIANT="${REF}-${VARIANT}" | |
| REF_SHA_VARIANT="${REF}-${SHA}-${VARIANT}" | |
| # Pass variables to next step | |
| echo "VARIANT_BUILD_DIR=$VARIANT_BUILD_DIR" >> $GITHUB_OUTPUT | |
| echo "VARIANT=$VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_VARIANT=$REF_VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_SHA_VARIANT=$REF_SHA_VARIANT" >> $GITHUB_OUTPUT | |
| - name: 1.15.12-envsubst-git-jq-kustomize-sops-ssh-yq - Build (PRs) | |
| # Run only on pull requests | |
| if: github.event_name == 'pull_request' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.15.12-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: false | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-15-12-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-15-12-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.15.12-envsubst-git-jq-kustomize-sops-ssh-yq - Build and push (master) | |
| # Run only on master | |
| if: github.ref == 'refs/heads/master' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.15.12-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-15-12-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-15-12-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.15.12-envsubst-git-jq-kustomize-sops-ssh-yq - Build and push (release) | |
| if: startsWith(github.ref, 'refs/tags/') | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.15.12-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-15-12-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-15-12-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-15-12-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| # Temp fix | |
| # https://github.com/docker/build-push-action/issues/252 | |
| # https://github.com/moby/buildkit/issues/1896 | |
| - name: Move cache | |
| run: | | |
| rm -rf /tmp/.buildx-cache | |
| mv /tmp/.buildx-cache-new /tmp/.buildx-cache | |
| build-1-14-10: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Display system info (linux) | |
| run: | | |
| set -e | |
| hostname | |
| whoami | |
| cat /etc/*release | |
| lscpu | |
| free | |
| df -h | |
| pwd | |
| docker info | |
| docker version | |
| # See: https://github.com/docker/build-push-action/blob/v2.6.1/docs/advanced/cache.md#github-cache | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v3 | |
| - name: Set up Docker Buildx | |
| id: buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Cache Docker layers | |
| uses: actions/cache@v4 | |
| with: | |
| path: /tmp/.buildx-cache | |
| key: ${{ runner.os }}-buildx-1.14.10-${{ github.sha }} | |
| restore-keys: | | |
| ${{ runner.os }}-buildx-1.14.10- | |
| ${{ runner.os }}-buildx- | |
| - name: Login to Docker Hub registry | |
| # Run on master and tags | |
| if: github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/') | |
| uses: docker/login-action@v3 | |
| with: | |
| username: ${{ secrets.DOCKERHUB_REGISTRY_USER }} | |
| password: ${{ secrets.DOCKERHUB_REGISTRY_PASSWORD }} | |
| # This step generates the docker tags | |
| - name: Prepare | |
| id: prep-1-14-10 | |
| run: | | |
| set -e | |
| # Get ref, i.e. <branch_name> from refs/heads/<branch_name>, or <tag-name> from refs/tags/<tag_name>. E.g. 'master' or 'v0.0.0' | |
| REF=$( echo "${GITHUB_REF}" | rev | cut -d '/' -f 1 | rev ) | |
| # Get short commit hash E.g. 'abc0123' | |
| SHA=$( echo "${GITHUB_SHA}" | cut -c1-7 ) | |
| # Generate docker image tags | |
| # E.g. 'v0.0.0-<variant>' and 'v0.0.0-abc0123-<variant>' | |
| # E.g. 'master-<variant>' and 'master-abc0123-<variant>' | |
| VARIANT="1.14.10" | |
| REF_VARIANT="${REF}-${VARIANT}" | |
| REF_SHA_VARIANT="${REF}-${SHA}-${VARIANT}" | |
| # Pass variables to next step | |
| echo "VARIANT_BUILD_DIR=$VARIANT_BUILD_DIR" >> $GITHUB_OUTPUT | |
| echo "VARIANT=$VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_VARIANT=$REF_VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_SHA_VARIANT=$REF_SHA_VARIANT" >> $GITHUB_OUTPUT | |
| - name: 1.14.10 - Build (PRs) | |
| # Run only on pull requests | |
| if: github.event_name == 'pull_request' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.14.10 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: false | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-14-10.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-14-10.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.14.10 - Build and push (master) | |
| # Run only on master | |
| if: github.ref == 'refs/heads/master' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.14.10 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-14-10.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-14-10.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.14.10 - Build and push (release) | |
| if: startsWith(github.ref, 'refs/tags/') | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.14.10 | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-14-10.outputs.VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-14-10.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-14-10.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| # This step generates the docker tags | |
| - name: Prepare | |
| id: prep-1-14-10-envsubst-git-jq-kustomize-sops-ssh-yq | |
| run: | | |
| set -e | |
| # Get ref, i.e. <branch_name> from refs/heads/<branch_name>, or <tag-name> from refs/tags/<tag_name>. E.g. 'master' or 'v0.0.0' | |
| REF=$( echo "${GITHUB_REF}" | rev | cut -d '/' -f 1 | rev ) | |
| # Get short commit hash E.g. 'abc0123' | |
| SHA=$( echo "${GITHUB_SHA}" | cut -c1-7 ) | |
| # Generate docker image tags | |
| # E.g. 'v0.0.0-<variant>' and 'v0.0.0-abc0123-<variant>' | |
| # E.g. 'master-<variant>' and 'master-abc0123-<variant>' | |
| VARIANT="1.14.10-envsubst-git-jq-kustomize-sops-ssh-yq" | |
| REF_VARIANT="${REF}-${VARIANT}" | |
| REF_SHA_VARIANT="${REF}-${SHA}-${VARIANT}" | |
| # Pass variables to next step | |
| echo "VARIANT_BUILD_DIR=$VARIANT_BUILD_DIR" >> $GITHUB_OUTPUT | |
| echo "VARIANT=$VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_VARIANT=$REF_VARIANT" >> $GITHUB_OUTPUT | |
| echo "REF_SHA_VARIANT=$REF_SHA_VARIANT" >> $GITHUB_OUTPUT | |
| - name: 1.14.10-envsubst-git-jq-kustomize-sops-ssh-yq - Build (PRs) | |
| # Run only on pull requests | |
| if: github.event_name == 'pull_request' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.14.10-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: false | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-14-10-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-14-10-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.14.10-envsubst-git-jq-kustomize-sops-ssh-yq - Build and push (master) | |
| # Run only on master | |
| if: github.ref == 'refs/heads/master' | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.14.10-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-14-10-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-14-10-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| - name: 1.14.10-envsubst-git-jq-kustomize-sops-ssh-yq - Build and push (release) | |
| if: startsWith(github.ref, 'refs/tags/') | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: variants/1.14.10-envsubst-git-jq-kustomize-sops-ssh-yq | |
| platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x | |
| push: true | |
| tags: | | |
| ${{ github.repository }}:${{ steps.prep-1-14-10-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-14-10-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_VARIANT }} | |
| ${{ github.repository }}:${{ steps.prep-1-14-10-envsubst-git-jq-kustomize-sops-ssh-yq.outputs.REF_SHA_VARIANT }} | |
| cache-from: type=local,src=/tmp/.buildx-cache | |
| cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | |
| # Temp fix | |
| # https://github.com/docker/build-push-action/issues/252 | |
| # https://github.com/moby/buildkit/issues/1896 | |
| - name: Move cache | |
| run: | | |
| rm -rf /tmp/.buildx-cache | |
| mv /tmp/.buildx-cache-new /tmp/.buildx-cache | |
| update-draft-release: | |
| needs: | |
| - build-1-35-1 | |
| - build-1-34-4 | |
| - build-1-33-9 | |
| - build-1-32-12 | |
| - build-1-31-14 | |
| - build-1-30-14 | |
| - build-1-29-15 | |
| - build-1-28-15 | |
| - build-1-27-16 | |
| - build-1-26-15 | |
| - build-1-25-16 | |
| - build-1-24-17 | |
| - build-1-23-17 | |
| - build-1-22-17 | |
| - build-1-21-14 | |
| - build-1-20-15 | |
| - build-1-19-16 | |
| - build-1-18-20 | |
| - build-1-17-17 | |
| - build-1-16-15 | |
| - build-1-15-12 | |
| - build-1-14-10 | |
| if: github.ref == 'refs/heads/master' | |
| runs-on: ubuntu-latest | |
| steps: | |
| # Drafts your next Release notes as Pull Requests are merged into "master" | |
| - uses: release-drafter/release-drafter@v6 | |
| with: | |
| config-name: release-drafter.yml | |
| publish: false | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| publish-draft-release: | |
| needs: | |
| - build-1-35-1 | |
| - build-1-34-4 | |
| - build-1-33-9 | |
| - build-1-32-12 | |
| - build-1-31-14 | |
| - build-1-30-14 | |
| - build-1-29-15 | |
| - build-1-28-15 | |
| - build-1-27-16 | |
| - build-1-26-15 | |
| - build-1-25-16 | |
| - build-1-24-17 | |
| - build-1-23-17 | |
| - build-1-22-17 | |
| - build-1-21-14 | |
| - build-1-20-15 | |
| - build-1-19-16 | |
| - build-1-18-20 | |
| - build-1-17-17 | |
| - build-1-16-15 | |
| - build-1-15-12 | |
| - build-1-14-10 | |
| if: startsWith(github.ref, 'refs/tags/') | |
| runs-on: ubuntu-latest | |
| steps: | |
| # Drafts your next Release notes as Pull Requests are merged into "master" | |
| - uses: release-drafter/release-drafter@v6 | |
| with: | |
| config-name: release-drafter.yml | |
| publish: true | |
| name: ${{ github.ref_name }} # E.g. 'master' or 'v1.2.3' | |
| tag: ${{ github.ref_name }} # E.g. 'master' or 'v1.2.3' | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| update-dockerhub-description: | |
| needs: | |
| - build-1-35-1 | |
| - build-1-34-4 | |
| - build-1-33-9 | |
| - build-1-32-12 | |
| - build-1-31-14 | |
| - build-1-30-14 | |
| - build-1-29-15 | |
| - build-1-28-15 | |
| - build-1-27-16 | |
| - build-1-26-15 | |
| - build-1-25-16 | |
| - build-1-24-17 | |
| - build-1-23-17 | |
| - build-1-22-17 | |
| - build-1-21-14 | |
| - build-1-20-15 | |
| - build-1-19-16 | |
| - build-1-18-20 | |
| - build-1-17-17 | |
| - build-1-16-15 | |
| - build-1-15-12 | |
| - build-1-14-10 | |
| if: github.ref == 'refs/heads/master' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Docker Hub Description | |
| uses: peter-evans/dockerhub-description@v4 | |
| with: | |
| username: ${{ secrets.DOCKERHUB_REGISTRY_USER }} | |
| password: ${{ secrets.DOCKERHUB_REGISTRY_PASSWORD }} | |
| repository: ${{ github.repository }} | |
| short-description: ${{ github.event.repository.description }} |