ci: disable cache and enable manual runs
All checks were successful
ci/woodpecker/push/lint Pipeline was successful
ci/woodpecker/push/build Pipeline was successful

This commit is contained in:
Michael Grote 2024-07-26 00:26:31 +02:00
parent 1053133419
commit 0a04fde47d

View file

@ -29,7 +29,7 @@ steps:
DATE=$(date --iso-8601=seconds) DATE=$(date --iso-8601=seconds)
echo "DATE=$DATE" >> .variables echo "DATE=$DATE" >> .variables
when: when:
- event: [push, pull_request, cron] - event: [push, pull_request, cron, manual]
evaluate: 'CI_COMMIT_AUTHOR_EMAIL != "renovate@mgrote.net"' evaluate: 'CI_COMMIT_AUTHOR_EMAIL != "renovate@mgrote.net"'
build_and_push: # damit dieser Step laufen kann muss das Repo in der Woodpecker-GUI "privilegiert" sein build_and_push: # damit dieser Step laufen kann muss das Repo in der Woodpecker-GUI "privilegiert" sein
@ -44,6 +44,7 @@ steps:
- docker buildx inspect --bootstrap - docker buildx inspect --bootstrap
- | - |
docker buildx build \ docker buildx build \
--no-cache \
--platform=linux/amd64 \ --platform=linux/amd64 \
--push \ --push \
--tag registry.mgrote.net/${CI_REPO_NAME}:${CI_COMMIT_SHA:0:8} \ --tag registry.mgrote.net/${CI_REPO_NAME}:${CI_COMMIT_SHA:0:8} \
@ -56,6 +57,6 @@ steps:
--label org.opencontainers.image.created=$DATE \ --label org.opencontainers.image.created=$DATE \
--file Dockerfile . --file Dockerfile .
when: when:
- event: [push, pull_request, cron] - event: [push, pull_request, cron, manual]
evaluate: 'CI_COMMIT_AUTHOR_EMAIL != "renovate@mgrote.net"' evaluate: 'CI_COMMIT_AUTHOR_EMAIL != "renovate@mgrote.net"'
... ...