might fix mirror image tags by excluding the sha from crane cp #48
This file contains 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: images | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
docker: | |
runs-on: ubuntu-latest | |
permissions: | |
packages: write | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@v4 | |
- | |
name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- | |
name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- | |
name: Login to GitHub Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- | |
name: Build and push runner | |
uses: docker/build-push-action@v5 | |
env: | |
SOURCE_DATE_EPOCH: 0 | |
with: | |
context: . | |
file: runner.Dockerfile | |
tags: | | |
ghcr.io/yolean/ystack-runner:${{ github.sha }} | |
platforms: linux/amd64,linux/arm64/v8 | |
push: true | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
- | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.22 | |
- | |
uses: imjasonh/setup-crane@v0.3 | |
- | |
name: Get registry image tag | |
id: imageRegistryTag | |
uses: mikefarah/yq@v4.44.1 | |
with: | |
cmd: yq '.images[0].newTag | sub("(.*)@.*", "${1}")' registry/generic/kustomization.yaml | |
- | |
name: Mirror registry image from hub | |
run: | | |
TAG_REGISTRY=${{ steps.imageRegistryTag.outputs.result }} | |
crane cp registry:$TAG_REGISTRY ghcr.io/yolean/registry:$TAG_REGISTRY | |
- | |
name: Get buildkit image tag | |
id: imageBuildkitTag | |
uses: mikefarah/yq@v4.44.1 | |
with: | |
cmd: yq '.images[0].newTag | sub("(.*)@.*", "${1}")' buildkit/kustomization.yaml | |
- | |
name: Mirror buildkit image from hub | |
run: | | |
TAG_BUILDKIT=${{ steps.imageBuildkitTag.outputs.result }} | |
crane cp docker.io/moby/buildkit:$TAG_BUILDKIT ghcr.io/yolean/buildkit:$TAG_BUILDKIT | |
- | |
name: Get gitea image tag | |
id: imageGiteaTag | |
uses: mikefarah/yq@v4.44.1 | |
with: | |
cmd: yq '.images[0].newTag | sub("(.*)@.*", "${1}")' git-source/base/kustomization.yaml | |
- | |
name: Mirror gitea image from hub | |
run: | | |
TAG_GITEA=${{ steps.imageGiteaTag.outputs.result }} | |
crane cp docker.io/gitea/gitea:$TAG_GITEA ghcr.io/yolean/gitea:$TAG_GITEA | |
- | |
name: Get grafana image tag | |
id: imageGrafanaTag | |
uses: mikefarah/yq@v4.44.1 | |
with: | |
cmd: yq '.images[0].newTag | sub("(.*)@.*", "${1}")' monitoring/grafana/kustomization.yaml | |
- | |
name: Mirror grafana image from hub | |
run: | | |
TAG_GRAFANA=${{ steps.imageGrafanaTag.outputs.result }} | |
crane cp docker.io/grafana/grafana:$TAG_GRAFANA ghcr.io/yolean/grafana:$TAG_GRAFANA | |
- | |
name: Get grafana-image-renderer image tag | |
id: imageGrafanaImageRendererTag | |
uses: mikefarah/yq@v4.44.1 | |
with: | |
cmd: yq '.images[1].newTag | sub("(.*)@.*", "${1}")' monitoring/grafana/kustomization.yaml | |
- | |
name: Mirror grafana-image-renderer image from hub | |
run: | | |
TAG_GRAFANAIMG=${{ steps.imageGrafanaImageRendererTag.outputs.result }} | |
crane cp docker.io/grafana/grafana-image-renderer:$TAG_GRAFANAIMG ghcr.io/yolean/grafana-image-renderer:$TAG_GRAFANAIMG | |
- | |
name: Get redpanda image tag | |
id: imageRedpandaTag | |
uses: mikefarah/yq@v4.44.1 | |
with: | |
cmd: yq '.images[0].newTag | sub("(.*)@.*", "${1}")' kafka/redpanda-image/kustomization.yaml | |
- | |
name: Mirror redpanda image | |
run: | | |
TAG_REDPANDA=${{ steps.imageRedpandaTag.outputs.result }} | |
crane cp docker.redpanda.com/redpandadata/redpanda:$TAG_REDPANDA ghcr.io/yolean/redpanda:$TAG_REDPANDA |