Compare commits
No commits in common. "master" and "master" have entirely different histories.
|
@ -0,0 +1,35 @@
|
||||||
|
---
|
||||||
|
kind: pipeline
|
||||||
|
name: compliance
|
||||||
|
|
||||||
|
trigger:
|
||||||
|
event:
|
||||||
|
- pull_request
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: build
|
||||||
|
pull: always
|
||||||
|
image: gradle:6.6
|
||||||
|
commands:
|
||||||
|
- gradle build
|
||||||
|
- gradle test
|
||||||
|
|
||||||
|
---
|
||||||
|
kind: pipeline
|
||||||
|
name: release
|
||||||
|
|
||||||
|
trigger:
|
||||||
|
branch:
|
||||||
|
- master
|
||||||
|
event:
|
||||||
|
- push
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: publish
|
||||||
|
pull: always
|
||||||
|
image: gradle:6.6
|
||||||
|
environment:
|
||||||
|
MAVEN_PASSWORD:
|
||||||
|
from_secret: maven_password
|
||||||
|
commands:
|
||||||
|
- gradle publish
|
|
@ -1,19 +0,0 @@
|
||||||
clone:
|
|
||||||
git:
|
|
||||||
image: "woodpeckerci/plugin-git:next"
|
|
||||||
pipeline:
|
|
||||||
compliance:
|
|
||||||
commands:
|
|
||||||
- "gradle build"
|
|
||||||
- "gradle test"
|
|
||||||
image: "gradle:7.3-jdk17"
|
|
||||||
when:
|
|
||||||
event: pull_request
|
|
||||||
release:
|
|
||||||
commands:
|
|
||||||
- "gradle publish"
|
|
||||||
secrets:
|
|
||||||
- maven_password
|
|
||||||
image: "gradle:7.3-jdk17"
|
|
||||||
when:
|
|
||||||
branch: master
|
|
|
@ -34,8 +34,8 @@ publishing {
|
||||||
}
|
}
|
||||||
repositories {
|
repositories {
|
||||||
maven {
|
maven {
|
||||||
name = "jojodev"
|
name = "birbmc"
|
||||||
url = "https://mvn.jojodev.com/releases"
|
url = "https://mvn.birbmc.com/releases"
|
||||||
credentials {
|
credentials {
|
||||||
username = "admin"
|
username = "admin"
|
||||||
password = System.getenv("MAVEN_PASSWORD")
|
password = System.getenv("MAVEN_PASSWORD")
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-6.6-bin.zip
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
|
|
Loading…
Reference in New Issue