Merge pull request #30 from red-hat-data-services/update-renovate #54
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@v4 | |
- name: Set Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: './go.mod' | |
- name: Login to Quay.io | |
id: podman-login-quay | |
run: | | |
podman login --username ${{ secrets.QUAY_ID }} --password ${{ secrets.QUAY_TOKEN }} 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 | |
- name: Logout from Quay.io | |
if: always() && steps.podman-login-quay.outcome == 'success' | |
run: | | |
podman logout quay.io |