Skip to content

Commit 6d0e1c1

Browse files
committed
fixup! try a simplier version of the 'build' workflow
1 parent 7889835 commit 6d0e1c1

File tree

3 files changed

+10
-23
lines changed

3 files changed

+10
-23
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Build
1+
name: compile-and-test
22

33
on:
44
pull_request:

.github/workflows/release.yaml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: build-and-publish
1+
name: publish
22

33
on:
44
push:
@@ -9,8 +9,6 @@ on:
99
jobs:
1010
build-artifact:
1111
runs-on: ubuntu-latest
12-
container:
13-
image: gradle:8-jdk21
1412

1513
steps:
1614
- uses: actions/checkout@v4
@@ -33,6 +31,14 @@ jobs:
3331
VERSION=${TAG_NAME#v}
3432
echo "version=$VERSION" >> $GITHUB_OUTPUT
3533
34+
- name: Setup Java
35+
uses: actions/setup-java@v4
36+
with:
37+
distribution: 'temurin'
38+
java-version: 21
39+
40+
- name: Setup Gradle
41+
uses: gradle/actions/setup-gradle@v4
3642

3743
- name: Java Compilation
3844
run: ./gradlew -Pplugin_version=${{ steps.version.outputs.version }} clean assemble --no-daemon

docker/Dockerfile.ci

Lines changed: 0 additions & 19 deletions
This file was deleted.

0 commit comments

Comments
 (0)