Skip to content

Commit 1e22586

Browse files
committed
build: remove clean from maven command, attempt to fix windows build on GitHub Actions
1 parent be227e4 commit 1e22586

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/full-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ jobs:
3131
${{ runner.os }}-maven-
3232
enableCrossOsArchive: true
3333
- name: Install
34-
run: mvn clean install -DskipTests -q -P gradlePlugin
34+
run: mvn install -DskipTests -q -P gradlePlugin
3535
- name: Build
36-
run: mvn clean package -P gradlePlugin
36+
run: mvn package -P gradlePlugin
3737
env:
3838
BUILD_PORT: 0
3939
BUILD_SECURE_PORT: 0

.github/workflows/quick-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@ jobs:
3333
${{ runner.os }}-maven-
3434
enableCrossOsArchive: true
3535
- name: Install
36-
run: mvn clean install -DskipTests -q -B
36+
run: mvn install -DskipTests -q -B
3737
env:
3838
BUILD_PORT: 0
3939
BUILD_SECURE_PORT: 0
4040
BUILD_LOG_LEVEL: 'ERROR'
4141
- name: Build
42-
run: mvn clean package
42+
run: mvn package
4343
env:
4444
BUILD_PORT: 0
4545
BUILD_SECURE_PORT: 0

0 commit comments

Comments
 (0)