Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
Signed-off-by: MohammedAbdi <[email protected]>
  • Loading branch information
mamy-CS committed Apr 18, 2024
1 parent 225fa33 commit f895f8f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .github/publish-images/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,13 @@ runs:
- name: Build Operator and image and then push
shell: bash
run: |
echo VERSION=$VERSION
echo IMAGE_TAG_BASE=$IMAGE_TAG_BASE
echo "version=$VERSION" >> $GITHUB_OUTPUT
echo "IMAGE_TAG_BASE=$IMAGE_TAG_BASE" >> $GITHUB_OUTPUT
make operator-build && make operator-push
env:
VERSION: ${{ inputs.version }}
OPERATOR_IMG: ${{ format('{0}', inputs.image_url) }}
IMAGE_TAG_BASE: ${{ inputs.image_registry }}
# OPERATOR_IMG: ${{ format('{0}', inputs.image_url) }}
ADDITIONAL_TAGS: ${{ inputs.additional_tags }}
2 changes: 1 addition & 1 deletion .github/workflows/publish-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ jobs:
image_registry: ${{ vars.REGISTRY }}
registry_login: ${{ secrets.QUAY_BOT_NAME }}
registry_token: ${{ secrets.QUAY_BOT_TOKEN }}
version: 0.0.5
version: ${{ steps.version.outputs.version }}
additional_tags: ${{ steps.additional_tags.outputs.result }}

0 comments on commit f895f8f

Please sign in to comment.