fix: correct label selector to find task pod (#1573) #7
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: Devel | |
on: | |
push: | |
branches: [devel] | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
name: Push devel image | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build Image | |
run: | | |
IMG=awx-operator:devel make docker-build | |
- name: Push To Quay | |
uses: redhat-actions/[email protected] | |
with: | |
image: awx-operator | |
tags: devel | |
registry: quay.io/ansible/ | |
username: ${{ secrets.QUAY_USER }} | |
password: ${{ secrets.QUAY_TOKEN }} |