Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix uv publishing #85

Merged
merged 2 commits into from
Jan 13, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fixup! Fix uv publishing
  • Loading branch information
tibdex committed Jan 13, 2025
commit 07170f90aebe761607e32fa77f250bc845a081c0
4 changes: 3 additions & 1 deletion .github/actions/build-java-runtime/action.yaml
Original file line number Diff line number Diff line change
@@ -7,9 +7,11 @@ inputs:
runs:
using: composite
steps:
- uses: ./.github/actions/setup-uv
- uses: astral-sh/setup-uv@v5
with:
enable-cache: true
python-version: ${{ inputs.python-version }}
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"
14 changes: 0 additions & 14 deletions .github/actions/setup-uv/action.yaml

This file was deleted.

4 changes: 2 additions & 2 deletions .github/workflows/deployment.yaml
Original file line number Diff line number Diff line change
@@ -48,9 +48,9 @@ jobs:
# Required for trusted publishing.
id-token: write
steps:
- uses: ./.github/actions/setup-uv
- uses: astral-sh/setup-uv@v5
with:
python-version: "3.10"
version: "0.5.16" # Keep synced with same field in `build-java-runtime/action.yaml`.

- uses: actions/download-artifact@v4
with: