Merge pull request #291 from orenc1/add_vm_live_migratable_condition #137
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
on: | |
push: | |
branches: | |
- "main" | |
jobs: | |
build-and-push-image: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: build image | |
shell: bash | |
env: | |
QUAY_TOKEN: ${{secrets.QUAY_TOKEN}} | |
REGISTRY: "quay.io/capk" | |
TAG: "dev-latest" | |
run: | | |
echo $QUAY_TOKEN | docker login -u="capk+capk_robot" quay.io --password-stdin | |
make docker-build-all | |
make docker-push-all |