Compare commits

..

No commits in common. "fd77fbd97e3eceee5489de37c1cf1d80715220d5" and "08bdb6f48140df79e75e9cd71fb56ee7c4186cdf" have entirely different histories.

View File

@ -9,17 +9,17 @@ jobs:
Build: Build:
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
steps: steps:
- name: Checkout the repo - name: Greetings
uses: actions/checkout@v4 run: echo "The job was automatically triggered by a ${{ gitea.event_name }} event." && echo "This job is now running on a ${{ runner.os }}" && echo "The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
- name: set up JDK 23 - name: set up JDK 23
uses: actions/setup-java@v3 uses: actions/checkout@v3
with: with:
java-version: '23' java-version: '23'
distribution: 'temurin' distribution: 'temurin'
- name: Grant execute permission for gradlew - name: Grant execute permission for gradlew
run: chmod +x gradlew run: chmod +x gradlew
- name: Build with Gradle - name: Build with Gradle
uses: gradle/gradle-build-action@v2 uses: gradle/gradle-build-action@v3
with: with:
arguments: assembleRelease arguments: assembleRelease
- name: Upload JAR Artifact - name: Upload JAR Artifact