Skip to content

Commit

Permalink
Test fixing if
Browse files Browse the repository at this point in the history
  • Loading branch information
andreas-eberle committed Feb 15, 2024
1 parent d77d404 commit 4a4aa32
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/actions/k8s/build-deploy-quarkus/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,9 @@ runs:
- name: push & deploy to k8s
shell: bash
working-directory: ${{ inputs.working-directory}}
if: github.ref == ${{ inputs.deploy-branch }}
if: ${{ github.ref == inputs.deploy-branch }}
run: |
./gradlew assemble \
-Dquarkus.kubernetes.deploy=true \
./gradlew assemble -Dquarkus.kubernetes.deploy=true \
-Dquarkus.container-image.group=${{ github.repository_owner }}/${{ github.event.repository.name }} \
-Dquarkus.container-image.registry=ghcr.io \
-Dquarkus.container-image.additional-tags=${{ github.sha }} \
Expand Down

0 comments on commit 4a4aa32

Please sign in to comment.