Skip to content

Commit

Permalink
restore gradle.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Euphillya committed Mar 2, 2024
1 parent 3d3c987 commit b78ee70
Showing 1 changed file with 22 additions and 21 deletions.
43 changes: 22 additions & 21 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,24 +11,25 @@ jobs:
os: [ubuntu-latest, windows-latest]

steps:
- uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: 17
cache: 'gradle'
distribution: 'temurin'
- name: Build with Gradle
run: ./gradlew build -s
- uses: actions/upload-artifact@v3
name: Archive Reports
if: always()
with:
name: reports for ${{ matrix.os }}
path: '**/build/reports/**'
- uses: actions/upload-artifact@v3
name: Archive Logs
if: always()
with:
name: logs for ${{ matrix.os }}
path: '**/*.log'
- uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: 17
cache: 'gradle'
distribution: 'temurin'
- name: Build with Gradle
run: ./gradlew build -s
- uses: actions/upload-artifact@v3
name: Archive Reports
if: always()
with:
name: reports for ${{ matrix.os }}
path: '**/build/reports/**'
- uses: actions/upload-artifact@v3
name: Archive Logs
if: always()
with:
name: logs for ${{ matrix.os }}
path: '**/*.log'

0 comments on commit b78ee70

Please sign in to comment.