chore(deps): update golang docker tag to v1.22.8 (#446) #72
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: Publish CD builder images | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
paths: | |
- "dockerfiles/cd/builders/*/Dockerfile" | |
- "dockerfiles/cd/builders/*/*.Dockerfile" | |
- "dockerfiles/cd/builders/skaffold.yaml" | |
jobs: | |
skaffold-go: | |
name: publish images with skaffold | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
strategy: | |
matrix: | |
module: [builder-go] | |
go-profile: [go-1.23, go-1.22, go-1.21] | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: '0' | |
fetch-tags: 'true' | |
# https://github.com/docker/setup-qemu-action | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
# https://github.com/docker/setup-buildx-action | |
- name: Set up Docker Buildx | |
id: buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Log in to the Container registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Setup skaffold | |
run: | | |
curl -Lo skaffold https://storage.googleapis.com/skaffold/releases/v2.13.2/skaffold-linux-amd64 && \ | |
sudo install skaffold /usr/local/bin/ | |
- name: Publish images | |
working-directory: dockerfiles/cd/builders | |
run: | | |
skaffold build \ | |
--build-concurrency 1 \ | |
--cache-artifacts \ | |
--default-repo ghcr.io/pingcap-qe/cd/builders \ | |
--module ${{ matrix.module }} \ | |
--profile ${{ matrix.go-profile }} | |
skaffold-nogo: | |
name: publish images with skaffold | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
strategy: | |
matrix: | |
module: [builder-tiflash, builder-tikv, builder-tikv-fips] | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: '0' | |
fetch-tags: 'true' | |
# https://github.com/docker/setup-qemu-action | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
# https://github.com/docker/setup-buildx-action | |
- name: Set up Docker Buildx | |
id: buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Log in to the Container registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Setup skaffold | |
run: | | |
curl -Lo skaffold https://storage.googleapis.com/skaffold/releases/v2.13.2/skaffold-linux-amd64 && \ | |
sudo install skaffold /usr/local/bin/ | |
- name: Publish images | |
working-directory: dockerfiles/cd/builders | |
run: | | |
skaffold build \ | |
--build-concurrency 1 \ | |
--cache-artifacts \ | |
--default-repo ghcr.io/pingcap-qe/cd/builders \ | |
--module ${{ matrix.module }} |