Skip to content

Commit

Permalink
Fix uv publishing (#85)
Browse files Browse the repository at this point in the history
  • Loading branch information
tibdex authored Jan 13, 2025
1 parent 651e1eb commit 5a73545
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/build-java-runtime/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ runs:
with:
enable-cache: true
python-version: ${{ inputs.python-version }}
version: "0.5.16"
version: "0.5.16" # Keep synced with same field in `deployment.yaml`.

- id: get-java-version
run: uv run python -c 'from jdk4py import JAVA_VERSION; print(f"""version={".".join(str(number) for number in JAVA_VERSION)}""")' >> "$GITHUB_OUTPUT"
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,10 @@ jobs:
# Required for trusted publishing.
id-token: write
steps:
- uses: astral-sh/setup-uv@v5
with:
version: "0.5.16" # Keep synced with same field in `build-java-runtime/action.yaml`.

- uses: actions/download-artifact@v4
with:
merge-multiple: true
Expand Down

0 comments on commit 5a73545

Please sign in to comment.