Temporarily comment out #261
Workflow file for this run
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: Build ModernFix using Gradle | |
on: | |
push: | |
branches: | |
- '**' | |
tags-ignore: | |
- '**' | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: 17 | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v2 | |
with: | |
cache-read-only: ${{ !startsWith(github.ref, 'refs/heads/1.') }} | |
gradle-home-cache-cleanup: true | |
- name: Setup project Loom cache | |
uses: actions/cache@v3 | |
with: | |
path: | | |
.gradle/loom-cache | |
key: ${{ runner.os }}-gradle-${{ hashFiles('**/gradle.properties', '**/*.gradle*', '**/gradle-wrapper.properties') }} | |
restore-keys: ${{ runner.os }}-gradle- | |
- name: Build ModernFix | |
run: | | |
chmod +x gradlew | |
./gradlew --stacktrace build | |
- name: Upload Artifacts to GitHub | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Package | |
path: bin |