Skip to content

Commit

Permalink
Use docker engine for container build make targets in release GHA
Browse files Browse the repository at this point in the history
    - engine defaults to podman, but podman does not support all docker
      buildx features at the moment
    - for now, we can solve this by using docker everywhere in this workflow
    - fix galaxy-operator image refs in CSV
  • Loading branch information
rooftopcellist committed Apr 4, 2024
1 parent 4418233 commit d83c242
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
name: Promote Operator Release

env:
ENGINE: docker # use docker for everything so buildx commands can be used

on:
release:
types: [published]
Expand Down Expand Up @@ -66,7 +69,7 @@ jobs:

- name: Build Bundle Image
run: |
make bundle bundle-build IMG=eda-server-operator:${TAG_NAME} VERSION=${TAG_NAME} BUNDLE_IMG=eda-server-operator-bundle:${TAG_NAME}
make bundle bundle-build IMG=quay.io/ansible/eda-server-operator:${TAG_NAME} VERSION=${TAG_NAME} BUNDLE_IMG=eda-server-operator-bundle:${TAG_NAME}
docker tag eda-server-operator-bundle:${TAG_NAME} eda-server-operator-bundle:latest
working-directory: eda-server-operator

Expand Down

0 comments on commit d83c242

Please sign in to comment.