Skip to content

Commit

Permalink
Work around more strange limitations in env context reachability
Browse files Browse the repository at this point in the history
  • Loading branch information
Tristan971 committed Jan 11, 2025
1 parent b351b11 commit a132dc9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
needs: [ "set_variables", "build_hotspot" ]
uses: "./.github/workflows/publish.yml"
with:
JAVA_VERSION: "${{ env.JAVA_VERSION }}"
JAVA_VERSION: "${{ needs.set_variables.outputs.java_version }}"
ARTIFACT_NAME: "mcw.jar"
DOCKER_IMAGE: "${{ needs.set_variables.outputs.docker_image }}"
DOCKER_TARGET: "hotspot"
Expand Down Expand Up @@ -107,10 +107,10 @@ jobs:
path: "target/mcw"

publish_graal:
needs: [ "set_variables", "build_hotspot" ]
needs: [ "set_variables", "build_graal" ]
uses: "./.github/workflows/publish.yml"
with:
JAVA_VERSION: "${{ env.JAVA_VERSION }}"
JAVA_VERSION: "${{ needs.set_variables.outputs.java_version }}"
ARTIFACT_NAME: "mcw-bin"
DOCKER_IMAGE: "${{ needs.set_variables.outputs.docker_image }}"
DOCKER_TARGET: "graal"
Expand Down

0 comments on commit a132dc9

Please sign in to comment.