Skip to content

Commit

Permalink
Merge pull request #240 from poingstudios/improve-docs
Browse files Browse the repository at this point in the history
Fix build CI/CD Java 17
  • Loading branch information
gumaciel authored Sep 3, 2024
2 parents 1223e74 + 21944ef commit c438c9c
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/manual_release_android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,13 @@ jobs:

steps:
- uses: actions/checkout@v2


- name: Set up Java
uses: actions/setup-java@v2
with:
java-version: 17
distribution: "temurin"

- name: Verify current inputs godot_version
run: |
CURRENT_GODOT_VERSION=${{ github.event.inputs.godot_version }}
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/release_android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ jobs:
- uses: actions/checkout@v4
with:
ref: ${{ github.ref_name }}

- name: Set up Java
uses: actions/setup-java@v2
with:
java-version: 17
distribution: "temurin"

- name: Set plugin version on env
run: |
Expand Down

0 comments on commit c438c9c

Please sign in to comment.