Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/feature-branch-push' into featur…
Browse files Browse the repository at this point in the history
…e-branch-push
  • Loading branch information
CFSNM committed Nov 27, 2024
2 parents 68b5718 + 488ddfa commit d77574d
Showing 1 changed file with 18 additions and 3 deletions.
21 changes: 18 additions & 3 deletions .github/workflows/feature-branch-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ env:
BRANCH_NAME: ${{ github.head_ref }}
on:
pull_request:
push:
branches:
- feature-*
- 'featureg-**'
workflow_dispatch:
jobs:
push-feature-image:
runs-on: ubuntu-latest
Expand All @@ -20,4 +20,19 @@ jobs:
podman login -u ${{ secrets.QUAY_ID }} -p ${{ secrets.QUAY_TOKEN }} quay.io
- name: Build and Push Feature Branch Image
run: |
make image -e IMG=quay.io/${{ secrets.QUAY_ORG }}/opendatahub-operator:${{ env.BRANCH_NAME }}
make image -e IMG=quay.io/${{ secrets.QUAY_ORG }}/opendatahub-operator:${{ env.BRANCH_NAME }}
- name: Build Bundle Manifests
run: |
make bundle
- name: Build Feature Branch Bundle
run: |
make bundle-build -e BUNDLE_IMG=quay.io/${{ secrets.QUAY_ORG }}/opendatahub-operator-bundle:${{ env.BRANCH_NAME }}
- name: Push Feature Branch Bundle to quay.io
run: |
make bundle-push -e BUNDLE_IMG=quay.io/${{ secrets.QUAY_ORG }}/opendatahub-operator-bundle:${{ env.BRANCH_NAME }}
- name: Build Feature Branch Catalog
run: |
make catalog-build -e CATALOG_IMG=quay.io/${{ secrets.QUAY_ORG }}/opendatahub-operator-catalog:${{ env.BRANCH_NAME }} -e BUNDLE_IMG=quay.io/${{ secrets.QUAY_ORG }}/opendatahub-operator-bundle:${{ env.BRANCH_NAME }}
- name: Push Feature Branch Catalog to quay.io
run: |
make catalog-push -e CATALOG_IMG=quay.io/${{ secrets.QUAY_ORG }}/opendatahub-operator-catalog:${{ env.BRANCH_NAME }}

0 comments on commit d77574d

Please sign in to comment.