Merge pull request #128 from rooftopcellist/sclorg-redis-image #48
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: Build Operator Image | |
on: | |
push: | |
branches: [main] | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
name: Push main image | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build Image | |
run: | | |
IMG=eda-server-operator:main make docker-build | |
- name: Push To Quay | |
uses: redhat-actions/[email protected] | |
with: | |
image: eda-server-operator | |
tags: main | |
registry: quay.io/ansible/ | |
username: ${{ secrets.QUAY_USER }} | |
password: ${{ secrets.QUAY_TOKEN }} |