mirror of
https://github.com/zontreck/AutoMoneyPlugin
synced 2025-06-19 10:23:55 +00:00
Initial commit
This commit is contained in:
commit
94a0826131
28 changed files with 2444 additions and 0 deletions
21
.github/actions/common-setup/action.yml
vendored
Normal file
21
.github/actions/common-setup/action.yml
vendored
Normal file
|
@ -0,0 +1,21 @@
|
|||
name: 'Common Setup'
|
||||
description: 'Set up JDK and grant execute permissions for gradlew'
|
||||
|
||||
inputs:
|
||||
java-version:
|
||||
description: 'Java version'
|
||||
required: true
|
||||
default: '21'
|
||||
|
||||
runs:
|
||||
using: 'composite'
|
||||
steps:
|
||||
- name: Set up JDK
|
||||
uses: actions/setup-java@v4
|
||||
with:
|
||||
java-version: ${{ inputs.java-version }}
|
||||
distribution: 'zulu'
|
||||
cache: gradle
|
||||
|
||||
- name: Setup Gradle
|
||||
uses: gradle/actions/setup-gradle@v3
|
Loading…
Add table
Add a link
Reference in a new issue