Skip to content
Merged
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:b04a8c5d46e210873ffd1af6ad5f4d62c69ed3a6736993556eae60bba1373a23
image: eclipse-temurin:17@sha256:859dc576f4af4fad89a179441e3f6dc9a549b86a2ffa5c740ed76b644810239b
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:b04a8c5d46e210873ffd1af6ad5f4d62c69ed3a6736993556eae60bba1373a23
image: eclipse-temurin:17@sha256:859dc576f4af4fad89a179441e3f6dc9a549b86a2ffa5c740ed76b644810239b
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:b04a8c5d46e210873ffd1af6ad5f4d62c69ed3a6736993556eae60bba1373a23
image: eclipse-temurin:17@sha256:859dc576f4af4fad89a179441e3f6dc9a549b86a2ffa5c740ed76b644810239b
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:b04a8c5d46e210873ffd1af6ad5f4d62c69ed3a6736993556eae60bba1373a23
image: eclipse-temurin:17@sha256:859dc576f4af4fad89a179441e3f6dc9a549b86a2ffa5c740ed76b644810239b
commands:
- export GRADLE_USER_HOME=$${CI_WORKSPACE}/.gradle
- ./gradlew publish -Prelease=true -PdeployUser=$SNAPSHOT_USER -PdeployPassword=$SNAPSHOT_PASS
Expand Down
Loading