Skip to content

Commit

Permalink
Merge pull request #17 from maiqueb/ensure-latest-install-manifest
Browse files Browse the repository at this point in the history
ci: ensure latest installer manifest
  • Loading branch information
maiqueb authored Jun 6, 2024
2 parents e5a37fc + 2e7e70e commit 64d2f69
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/golang.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,15 @@ jobs:
version: v1.57.2
args: --timeout 3m --verbose cmd/... pkg/...

- name: Ensure latest install manifest
run: |
echo "" > dist/install.yaml
IMG=ghcr.io/maiqueb/kubevirt-ipam-claims:latest make build-installer
if [[ -n "$(git status --porcelain)" ]]; then
echo "Please run 'make build-installer' and commit those changes"
git status --porcelain
exit 1
fi
- name: Test
run: ENVTEST_VERSION="release-0.17" make test

0 comments on commit 64d2f69

Please sign in to comment.