diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml deleted file mode 100644 index 0ee5522..0000000 --- a/.github/workflows/gradle.yml +++ /dev/null @@ -1,37 +0,0 @@ -name: CI - -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] - -jobs: - releaseJar: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-java@v1 - with: - java-version: 8 - - name: Cache .gradle/caches - uses: actions/cache@v1 - with: - path: ~/.gradle/caches - key: ${{ runner.os }}-gradle-${{ hashFiles('*/*.gradle*') }} - restore-keys: ${{ runner.os }}-gradle- - - name: Cache .gradle/wrapper - uses: actions/cache@v1 - with: - path: ~/.gradle/wrapper - key: ${{ runner.os }}-gradle-wrapper-${{ hashFiles('*/*.gradle') }} - restore-keys: ${{ runner.os }}-gradle-wrapper- - - name: Grant execute permission for gradlew - run: chmod +x gradlew - - name: Build with Gradle - run: ./gradlew clean build -s - - name: Upload Artifacts - uses: actions/upload-artifact@v2 - with: - name: Artifact - path: build/libs/*.jar