Merge pull request #8 from Bobbins228/image-build #9
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
# This workflow will build the CodeFlare Operator dev image and push it to the project-codeflare image registry | |
name: Operator Dev Image | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- 'docs/**' | |
- 'test/**' | |
- '**.adoc' | |
- '**.md' | |
- 'LICENSE' | |
jobs: | |
push: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: v1.19 | |
- name: Login to Quay.io | |
uses: redhat-actions/podman-login@v1 | |
with: | |
username: ${{ secrets.QUAY_ID }} | |
password: ${{ secrets.QUAY_TOKEN }} | |
registry: quay.io | |
- name: Image Build | |
run: | | |
make build | |
make image-build -e IMG=quay.io/project-codeflare/codeflare-operator:dev | |
make image-push -e IMG=quay.io/project-codeflare/codeflare-operator:dev |