Wait for kubectl to complete before returning in tests #206
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: GoPostSubmit | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
verify: | |
name: images | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout code | |
uses: actions/checkout@v4 | |
- name: images | |
run: make build-images | |
- name: push | |
run: | | |
echo ${{ secrets.DOCKER_PASSWORD }} | docker login quay.io --username ${{ secrets.DOCKER_USER }} --password-stdin | |
docker push quay.io/open-cluster-management/governance-policy-propagator:latest |