aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsyeyoung <cyong06@naver.com>2021-05-15 20:18:44 +0900
committersyeyoung <cyong06@naver.com>2021-05-15 20:18:44 +0900
commit093b8ebfdd2484e424b2524914f1f9d28f513430 (patch)
treeae21cf030fd0bd83a78e289cdcffad0cc4a24ebb
parentbea2927eb21f73c5872e9a5023ae7d9dbf86392c (diff)
parentf68a4b3ee646b8c25af98d9aae42bc1f3db9b47a (diff)
downloadSkyblock-Dungeons-Guide-093b8ebfdd2484e424b2524914f1f9d28f513430.tar.gz
Skyblock-Dungeons-Guide-093b8ebfdd2484e424b2524914f1f9d28f513430.tar.bz2
Skyblock-Dungeons-Guide-093b8ebfdd2484e424b2524914f1f9d28f513430.zip
Merge remote-tracking branch 'origin/master'
-rw-r--r--.github/workflows/main.yml32
1 files changed, 32 insertions, 0 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
new file mode 100644
index 00000000..e210470e
--- /dev/null
+++ b/.github/workflows/main.yml
@@ -0,0 +1,32 @@
+name: Build
+
+on:
+ push:
+ branches:
+ - '*'
+ pull_request:
+ branches:
+ - '*'
+ workflow_dispatch:
+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: Grant execute permission for gradlew
+ run: chmod +x gradlew
+ - name: Download hychat as a dependency
+ run: mkdir mods && wget https://cdn.discordapp.com/attachments/782825804983566356/791708191519932426/Hychat-1.12.1-BETA.jar -O mods/Hychat-1.12.1-BETA.jar
+ - name: Build with Gradle
+ run: ./gradlew build
+ - uses: actions/upload-artifact@v2
+ if: github.event_name == 'workflow_dispatch'
+ with:
+ name: Compiled-files
+ path: build/libs/*.jar