aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/do-build.yml21
1 files changed, 21 insertions, 0 deletions
diff --git a/.github/workflows/do-build.yml b/.github/workflows/do-build.yml
new file mode 100644
index 0000000..0619b20
--- /dev/null
+++ b/.github/workflows/do-build.yml
@@ -0,0 +1,21 @@
+name: Github Actions do build
+on: [push]
+jobs:
+ Run-Build:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ - name: Set up JDK 8
+ uses: actions/setup-java@v2
+ with:
+ java-version: '8'
+ distribution: 'adopt'
+ - name: Validate Gradle wrapper
+ uses: gradle/wrapper-validation-action@e6e38bacfdf1a337459f332974bb2327a31aaf4b
+ - name: Build with Gradle
+ run: bash ./gradlew build
+ - name: 'Upload Jar'
+ uses: actions/upload-artifact@v2
+ with:
+ name: CoflSky-CI
+ path: build/libs/CoflMod-1.0-all.jar \ No newline at end of file