Merge pull request #2205 from metalice/CNV-49040-no-subscription #1965
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: DEPLOY | |
env: | |
VERSION_TAG: ${{github.ref_name == 'main' && 'latest' || github.ref_name}} | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- v* | |
jobs: | |
deploy: | |
name: deploy | |
if: github.event_name != 'pull_request' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v1 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v1 | |
- name: Login to Quay.io | |
uses: docker/login-action@v1 | |
env: | |
GITHUB_TOKEN: '${{ secrets.BOT_PAT }}' | |
with: | |
registry: quay.io | |
username: ${{ secrets.QUAY_USERNAME }} | |
password: ${{ secrets.QUAY_PASS }} | |
- name: Build and push | |
id: docker_build | |
uses: docker/build-push-action@v2 | |
env: | |
GITHUB_TOKEN: '${{ secrets.BOT_PAT }}' | |
with: | |
push: true | |
tags: quay.io/kubevirt-ui/kubevirt-plugin:${{env.VERSION_TAG}} |