mirror of
https://github.com/JustinZeus/Wholphin.git
synced 2026-07-08 23:51:21 +02:00
Fix actions structure
This commit is contained in:
parent
397d919082
commit
1624a8d817
3 changed files with 2 additions and 2 deletions
22
.github/actions/setup/action.yml
vendored
Normal file
22
.github/actions/setup/action.yml
vendored
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
name: Setup
|
||||
description: "Setup the environment"
|
||||
|
||||
runs:
|
||||
using: "composite"
|
||||
steps:
|
||||
# Setup the SDKs
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: '3.12'
|
||||
cache: 'pip'
|
||||
- name: Setup JDK
|
||||
uses: actions/setup-java@v5
|
||||
with:
|
||||
distribution: zulu
|
||||
java-version: '21'
|
||||
cache: 'gradle'
|
||||
- name: Setup Android SDK
|
||||
uses: android-actions/setup-android@v3
|
||||
with:
|
||||
packages: "tools platform-tools build-tools;36.0.0 ndk;29.0.14206865"
|
||||
Loading…
Add table
Add a link
Reference in a new issue