Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
sgalsaleh committed Dec 22, 2023
1 parent d520bd1 commit cf1e414
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/actions/build-push-image-with-apko/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ runs:
using: "composite"
steps:
- id: check-image-exists
if: ${{ inputs.overwrite == 'false' }}
if: ${{ inputs.overwrite == '' || inputs.overwrite == 'false' }}
shell: bash
run: |
set -euo pipefail
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/image-deps-updater.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
image-name: index.docker.io/kotsadm/minio:${{ steps.get-tags.outputs.minio-tag }}
registry-username: ${{ secrets.DOCKERHUB_USER }}
registry-password: ${{ secrets.DOCKERHUB_PASSWORD }}
overwrite: ${{ github.event.inputs.overwrite || 'false' }}
overwrite: ${{ github.event.inputs.overwrite }}

- name: Build and push rqlite image
uses: ./.github/actions/build-push-image-with-apko
Expand All @@ -54,7 +54,7 @@ jobs:
image-name: index.docker.io/kotsadm/rqlite:${{ steps.get-tags.outputs.rqlite-tag }}
registry-username: ${{ secrets.DOCKERHUB_USER }}
registry-password: ${{ secrets.DOCKERHUB_PASSWORD }}
overwrite: ${{ github.event.inputs.overwrite || 'false' }}
overwrite: ${{ github.event.inputs.overwrite }}

- name: Build and push dex image
uses: ./.github/actions/build-push-image-with-apko
Expand All @@ -63,7 +63,7 @@ jobs:
image-name: index.docker.io/kotsadm/dex:${{ steps.get-tags.outputs.dex-tag }}
registry-username: ${{ secrets.DOCKERHUB_USER }}
registry-password: ${{ secrets.DOCKERHUB_PASSWORD }}
overwrite: ${{ github.event.inputs.overwrite || 'false' }}
overwrite: ${{ github.event.inputs.overwrite }}


update-image-deps:
Expand Down

0 comments on commit cf1e414

Please sign in to comment.