Skip to content

Commit 2d1937e

Browse files
Merge pull request #41 from leanix/feature/CID-3008/Publish-Image-to-OSS-Store-Docker-registry
CID-3153: fix Publish Package to ghcr.io action
2 parents f2c551e + 9fca28d commit 2d1937e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/publish-package-to-ghcr.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,18 +32,18 @@ jobs:
3232
3333
- name: Checkout
3434
uses: actions/checkout@v3
35-
if: (steps.tag-action.outputs.tag != '')
35+
if: (steps.extract_tag.outputs.tag != '')
3636

3737
- name: Setup Java
3838
uses: actions/setup-java@v3
39-
if: (steps.tag-action.outputs.tag != '')
39+
if: (steps.extract_tag.outputs.tag != '')
4040
with:
4141
distribution: 'temurin'
4242
java-version: '21'
4343

4444
- name: Build with Gradle
4545
uses: gradle/gradle-build-action@v2
46-
if: (steps.tag-action.outputs.tag != '')
46+
if: (steps.extract_tag.outputs.tag != '')
4747
continue-on-error: false
4848
with:
4949
arguments: build

0 commit comments

Comments
 (0)