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
12 changes: 6 additions & 6 deletions .woodpecker/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ when:
steps:

load-cache:
image: drillster/drone-volume-cache
image: drillster/drone-volume-cache@sha256:b82e143081dfb04ba300ce7854dfcecd31e7858e1998bf89806ec74a80a78e94
volumes: [/var/lib/docker/tmp:/cache]
settings:
restore: true
Expand All @@ -13,7 +13,7 @@ steps:
- .gradle/wrapper

build:
image: eclipse-temurin:17
image: eclipse-temurin:17@sha256:2cffc61cde3d5bd27a764c87508eb7714856fe396ab56a0f37e180a9e876bca2
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
image: eclipse-temurin:17@sha256:2cffc61cde3d5bd27a764c87508eb7714856fe396ab56a0f37e180a9e876bca2
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
image: eclipse-temurin:17@sha256:2cffc61cde3d5bd27a764c87508eb7714856fe396ab56a0f37e180a9e876bca2
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
image: eclipse-temurin:17@sha256:2cffc61cde3d5bd27a764c87508eb7714856fe396ab56a0f37e180a9e876bca2
commands:
- export GRADLE_USER_HOME=$${CI_WORKSPACE}/.gradle
- ./gradlew publish -Prelease=true -PdeployUser=$SNAPSHOT_USER -PdeployPassword=$SNAPSHOT_PASS
Expand All @@ -49,7 +49,7 @@ steps:
event: tag

save-cache:
image: drillster/drone-volume-cache
image: drillster/drone-volume-cache@sha256:b82e143081dfb04ba300ce7854dfcecd31e7858e1998bf89806ec74a80a78e94
volumes: [/var/lib/docker/tmp:/cache]
settings:
rebuild: true
Expand Down
Loading