Skip to content

Commit

Permalink
fix: add java version to pypi release script
Browse files Browse the repository at this point in the history
  • Loading branch information
hsheth2 committed Jan 12, 2024
1 parent 0c09de9 commit 9bd1a7c
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 6 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/publish-airflow-plugin-pypi-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,15 @@ jobs:
needs: setup
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
python-version: '3.10'
distribution: "zulu"
java-version: 17
- uses: actions/setup-python@v4
with:
python-version: "3.10"
cache: "pip"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
11 changes: 8 additions & 3 deletions .github/workflows/publish-pypi-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,15 @@ jobs:
needs: setup
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
python-version: '3.10'
distribution: "zulu"
java-version: 17
- uses: actions/setup-python@v4
with:
python-version: "3.10"
cache: "pip"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit 9bd1a7c

Please sign in to comment.