diff options
author | syeyoung <42869671+cyoung06@users.noreply.github.com> | 2021-05-11 09:37:50 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-11 09:37:50 +0900 |
commit | ca5f03410ee2660825545d8abdb91a1dd6a48ac8 (patch) | |
tree | 55695c6e97bc3192ba5cc3639c94423c1ccfee08 /.github/workflows | |
parent | 241e11397ba26ad337633fbd9a9e096795605f47 (diff) | |
parent | 3c8d9aacb95837168bf25083a8c5b586fd666d51 (diff) | |
download | Skyblock-Dungeons-Guide-ca5f03410ee2660825545d8abdb91a1dd6a48ac8.tar.gz Skyblock-Dungeons-Guide-ca5f03410ee2660825545d8abdb91a1dd6a48ac8.tar.bz2 Skyblock-Dungeons-Guide-ca5f03410ee2660825545d8abdb91a1dd6a48ac8.zip |
Merge pull request #4 from TymanWasTaken/patch-1
Add workflow
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/main.yml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 00000000..0dd0e7e2 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,27 @@ +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 |