We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 30759cf + a832231 commit fb6da89Copy full SHA for fb6da89
3 files changed
.github/workflows/build.yml
@@ -0,0 +1,32 @@
1
+name: CI
2
+on:
3
+ push:
4
+ branches:
5
+ - "*"
6
+ tags:
7
8
+ pull_request:
9
10
11
+ workflow_dispatch:
12
+
13
+jobs:
14
+ build:
15
+ name: "Build"
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ - name: Checkout
19
+ uses: actions/checkout@v5
20
+ - name: Set up Java
21
+ uses: actions/setup-java@v5
22
+ with:
23
+ distribution: 'temurin'
24
+ java-version: 21
25
+ cache: 'gradle'
26
+ - name: Build with Gradle
27
+ run: ./gradlew build --stacktrace
28
+ - name: Upload Artifacts
29
+ uses: actions/upload-artifact@v4
30
31
+ name: artifacts
32
+ path: build/libs/*
build.gradle.kts
@@ -4,7 +4,7 @@ plugins {
}
group = "de.bluecolored.bluemap.entities"
-version = "1.1"
+version = "1.2"
repositories {
mavenCentral()
gradlew
100644
100755
0 commit comments