Skip to content

Commit

Permalink
🌱 fix make bundle bug
Browse files Browse the repository at this point in the history
Signed-off-by: David Zager <[email protected]>
  • Loading branch information
djzager committed Nov 21, 2023
1 parent 9dd9845 commit 5421221
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/actions/make-bundle/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,12 @@ runs:
steps:
- name: Make bundle
env:
CHANNELS: ${{ inputs.channels }}
BUNDLE_IMAGE: ${{ inputs.operator_bundle }}
VERSION: ${{ inputs.version }}
run: |
[ -n "${VERSION}" ] && export VERSION="${VERSION:1}"
[ -n "${{ inputs.channels }}" ] && export CHANNELS="${{ inputs.channels }}"
[ -n "${{ inputs.version }}" ] && export VERSION="${{ inputs.version }}"
OPTS=""
[ -n "${{ inputs.operator }}" ] && OPTS+=" --set images.operator=${{ inputs.operator }}"
[ -n "${{ inputs.oauth_proxy }}" ] && OPTS+=" --set images.oauth_proxy=${{ inputs.oauth_proxy }}"
Expand Down

0 comments on commit 5421221

Please sign in to comment.