Skip to content

Commit

Permalink
Merge pull request #41 from leanix/feature/CID-3008/Publish-Image-to-…
Browse files Browse the repository at this point in the history
…OSS-Store-Docker-registry

CID-3153: fix Publish Package to ghcr.io action
  • Loading branch information
mohamedlajmileanix authored Nov 12, 2024
2 parents f2c551e + 9fca28d commit 2d1937e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish-package-to-ghcr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,18 +32,18 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
if: (steps.tag-action.outputs.tag != '')
if: (steps.extract_tag.outputs.tag != '')

- name: Setup Java
uses: actions/setup-java@v3
if: (steps.tag-action.outputs.tag != '')
if: (steps.extract_tag.outputs.tag != '')
with:
distribution: 'temurin'
java-version: '21'

- name: Build with Gradle
uses: gradle/gradle-build-action@v2
if: (steps.tag-action.outputs.tag != '')
if: (steps.extract_tag.outputs.tag != '')
continue-on-error: false
with:
arguments: build
Expand Down

0 comments on commit 2d1937e

Please sign in to comment.