diff options
author | My-Name-Is-Jeff <37018278+My-Name-Is-Jeff@users.noreply.github.com> | 2020-12-23 00:37:19 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-23 00:37:19 -0500 |
commit | 821026c32ec36894787d55801d82066ed206866f (patch) | |
tree | 1d585e29cf705cbc87baf08b1637910df53ea98c | |
parent | beaeebbc92ae994ee170e6028313fc633040fc21 (diff) | |
download | SkyblockMod-821026c32ec36894787d55801d82066ed206866f.tar.gz SkyblockMod-821026c32ec36894787d55801d82066ed206866f.tar.bz2 SkyblockMod-821026c32ec36894787d55801d82066ed206866f.zip |
Delete gradle.yml
-rw-r--r-- | .github/workflows/gradle.yml | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml deleted file mode 100644 index 0d19527..0000000 --- a/.github/workflows/gradle.yml +++ /dev/null @@ -1,37 +0,0 @@ -# This workflow will build a Java project with Gradle -# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle - -name: Build Mod with Gradle - -on: - push: - branches: [ development ] - pull_request: - branches: [ development ] - -jobs: - build: - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v2 - - name: Set up JDK 1.8 - uses: actions/setup-java@v1 - with: - java-version: 1.8 - - name: Cache Gradle packages - uses: actions/cache@v2 - with: - path: ~/.gradle/caches - key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }} - restore-keys: ${{ runner.os }}-gradle - - name: Grant execute permission for gradlew - run: chmod +x gradlew - - name: Build with Gradle - run: ./gradlew build - - name: Upload artifacts - uses: actions/upload-artifact@v2 - with: - name: Mod (Beta) - path: build/libs |