Use native codegen cmd generating client-go #923
Workflow file for this run
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: Docker Build Images | |
on: | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
# This prevents the job from running as other steps cover its functionality. | |
# We use 'if: false' to keep the file for future reference without deleting it. | |
if: false | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Docker Build Container Images | |
run: make docker-build-all |