Upstream CI, Resolve deprecation warnings. (#83) #210
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Self-Hosted runner CI with Gradle | |
on: [ push ] | |
jobs: | |
build: | |
runs-on: self-hosted | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Validate Gradle Wrapper | |
uses: gradle/wrapper-validation-action@v2 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: 17 | |
check-latest: true | |
- name: Build with Gradle | |
run: ./gradlew build | |
- name: Upload Auild Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: 'RSO Artifacts' | |
path: build/libs |