aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoKM <54663875+DoKM@users.noreply.github.com>2021-08-13 15:46:05 +0200
committerGitHub <noreply@github.com>2021-08-13 15:46:05 +0200
commit40dab913a6a1b64edf98cae89a9fb1c98ba3b64d (patch)
tree2f9013ccc4539ecfd2d95c809f6d03aa2e95360d
parent4cd0aad40adda684235ead5defa84d880a3f447d (diff)
parentbe000081ccf5d6f69586d7b63a32df1984b1bd82 (diff)
downloadNotEnoughUpdates-40dab913a6a1b64edf98cae89a9fb1c98ba3b64d.tar.gz
NotEnoughUpdates-40dab913a6a1b64edf98cae89a9fb1c98ba3b64d.tar.bz2
NotEnoughUpdates-40dab913a6a1b64edf98cae89a9fb1c98ba3b64d.zip
Merge pull request #17 from TymanWasTaken/patch-1
Add workflow
-rw-r--r--.github/workflows/build.yml42
1 files changed, 42 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
new file mode 100644
index 00000000..2df530bf
--- /dev/null
+++ b/.github/workflows/build.yml
@@ -0,0 +1,42 @@
+name: Build
+
+on:
+ push:
+ branches: [ master ]
+ paths-ignore:
+ - 'README.md'
+ - 'LICENSE'
+ - '.gitignore'
+ pull_request:
+ branches: [ master ]
+ paths-ignore:
+ - 'README.md'
+ - 'LICENSE'
+ - '.gitignore'
+ 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
+ - uses: actions/cache@v2
+ with:
+ path: |
+ ~/.gradle/caches
+ ~/.gradle/wrapper
+ key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
+ restore-keys: |
+ ${{ runner.os }}-gradle-
+ - name: Grant execute permission for gradlew
+ run: chmod +x gradlew
+ - name: Build with Gradle
+ run: ./gradlew build --no-daemon
+ - uses: actions/upload-artifact@v2
+ with:
+ path: build/libs/*.jar