Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .woodpecker/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ steps:
- .gradle/wrapper

build:
image: eclipse-temurin:17@sha256:2cffc61cde3d5bd27a764c87508eb7714856fe396ab56a0f37e180a9e876bca2
image: eclipse-temurin:17@sha256:2ff0b91aaa4cb5dc35b4760c37fe064390a486dcd90b361caa72b55d598601f3
commands:
- export GRADLE_USER_HOME=$${CI_WORKSPACE}/.gradle
- ./gradlew build -Pbranch=$CI_COMMIT_BRANCH -PdeployUser=$SNAPSHOT_USER -PdeployPassword=$SNAPSHOT_PASS
Expand All @@ -22,7 +22,7 @@ steps:
event: push

build-release:
image: eclipse-temurin:17@sha256:2cffc61cde3d5bd27a764c87508eb7714856fe396ab56a0f37e180a9e876bca2
image: eclipse-temurin:17@sha256:2ff0b91aaa4cb5dc35b4760c37fe064390a486dcd90b361caa72b55d598601f3
commands:
- export GRADLE_USER_HOME=$${CI_WORKSPACE}/.gradle
- ./gradlew build -Prelease=true -PdeployUser=$SNAPSHOT_USER -PdeployPassword=$SNAPSHOT_PASS
Expand All @@ -31,7 +31,7 @@ steps:
event: tag

publish-snapshot:
image: eclipse-temurin:17@sha256:2cffc61cde3d5bd27a764c87508eb7714856fe396ab56a0f37e180a9e876bca2
image: eclipse-temurin:17@sha256:2ff0b91aaa4cb5dc35b4760c37fe064390a486dcd90b361caa72b55d598601f3
commands:
- export GRADLE_USER_HOME=$${CI_WORKSPACE}/.gradle
- ./gradlew publish -Pbranch=$CI_COMMIT_BRANCH -PdeployUser=$SNAPSHOT_USER -PdeployPassword=$SNAPSHOT_PASS
Expand All @@ -40,7 +40,7 @@ steps:
event: push

publish-release:
image: eclipse-temurin:17@sha256:2cffc61cde3d5bd27a764c87508eb7714856fe396ab56a0f37e180a9e876bca2
image: eclipse-temurin:17@sha256:2ff0b91aaa4cb5dc35b4760c37fe064390a486dcd90b361caa72b55d598601f3
commands:
- export GRADLE_USER_HOME=$${CI_WORKSPACE}/.gradle
- ./gradlew publish -Prelease=true -PdeployUser=$SNAPSHOT_USER -PdeployPassword=$SNAPSHOT_PASS
Expand Down
Loading