turborepo 2.0.14->2.1.0 #29
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/[email protected] | |
- | |
name: Get registry image tag | |
id: imageRegistryTag | |
uses: mikefarah/[email protected] | |
with: | |
cmd: yq '.images[0].newTag' 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/[email protected] | |
with: | |
cmd: yq '.images[0].newTag' 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 grafana image tag | |
id: imageGrafanaTag | |
uses: mikefarah/[email protected] | |
with: | |
cmd: yq '.images[0].newTag' 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/[email protected] | |
with: | |
cmd: yq '.images[1].newTag' 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 |