Upgrade from kubebuilder v3.14.2 to v3.15.1 (#262) #795
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 | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- .github/workflows/docker.yaml | |
- Dockerfile | |
- go.* | |
- api/** | |
- internal/** | |
- config/** | |
- e2e_test/** | |
tags: | |
- v* | |
pull_request: | |
paths: | |
- .github/workflows/docker.yaml | |
- Dockerfile | |
- go.* | |
- api/** | |
- internal/** | |
- config/** | |
- e2e_test/** | |
jobs: | |
build: | |
uses: int128/docker-build-workflow/.github/workflows/build.yaml@v1 | |
e2e-test: | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: 1.22.4 | |
- run: make -C e2e_test cluster | |
- uses: docker/metadata-action@v5 | |
id: metadata | |
with: | |
images: ghcr.io/${{ github.repository }} | |
# set outputs.tags to single tag | |
flavor: latest=false | |
- uses: int128/wait-for-docker-image-action@v1 | |
with: | |
tags: ${{ steps.metadata.outputs.tags }} | |
- run: make -C e2e_test deploy | |
env: | |
CONTROLLER_IMAGE: ${{ steps.metadata.outputs.tags }} | |
- run: make -C e2e_test test | |
- run: make -C e2e_test logs-controller | |
if: always() | |
- run: make -C e2e_test logs-proxy | |
if: always() |