Compare commits

...

5 Commits

Author SHA1 Message Date
67ecf20a08 ci: do not publish as prerelease
All checks were successful
Cadoles/bouncer/pipeline/head This commit looks good
2025-08-25 11:26:12 +02:00
2e4f3972a9 ci: remove develop branch ref
Some checks reported warnings
Cadoles/bouncer/pipeline/head This commit was not built
2025-08-25 11:22:54 +02:00
5867d499cb Merge branch 'develop'
Some checks failed
Cadoles/bouncer/pipeline/head There was a failure building this commit
2025-08-25 11:12:53 +02:00
df53404fba chore: use date of commit instead of date of day for version
All checks were successful
Cadoles/bouncer/pipeline/head This commit looks good
2025-08-25 11:12:36 +02:00
c1d1a2fe46 Merge pull request 'Fix PR target mixup' (#52) from auto-cache-clear into develop
Some checks failed
Cadoles/bouncer/pipeline/head There was a failure building this commit
Reviewed-on: #52
2025-08-25 10:45:57 +02:00
2 changed files with 2 additions and 4 deletions

4
Jenkinsfile vendored
View File

@ -33,7 +33,6 @@ pipeline {
when {
anyOf {
branch 'master'
branch 'develop'
}
}
steps {
@ -45,7 +44,7 @@ pipeline {
passwordVariable: 'GITEA_RELEASE_PASSWORD'
])
]) {
sh 'make gitea-release'
sh 'GITEA_RELEASE_IS_PRERELEASE=false make gitea-release'
}
}
}
@ -55,7 +54,6 @@ pipeline {
when {
anyOf {
branch 'master'
branch 'develop'
}
}
steps {

View File

@ -6,7 +6,7 @@ SHELL := /bin/bash
BOUNCER_VERSION ?=
GIT_COMMIT := $(shell git rev-parse --short HEAD)
DATE_VERSION := $(shell date +%Y.%-m.%-d)
DATE_VERSION := $(shell git show -s --format=%cd --date=format:'%Y-%-m-%d' $(GIT_COMMIT))
FULL_VERSION := v$(DATE_VERSION)-$(GIT_COMMIT)$(if $(shell git diff --stat),-dirty,)
DOCKER_IMAGE_NAME ?= reg.cadoles.com/cadoles/bouncer