6 Commits
v1.1 ... master

Author SHA1 Message Date
813ab63683 Merge pull request 'dev' (#6) from dev into master
Some checks failed
ci/woodpecker/push/build Pipeline was successful
Pipeline failed
ci/woodpecker/manual/build Pipeline was successful
ci/woodpecker/cron/build Pipeline is pending
Reviewed-on: #6
2023-08-15 13:22:49 +02:00
487758180d Update .woodpecker/build-dev.yml
All checks were successful
ci/woodpecker/push/build-dev Pipeline was successful
ci/woodpecker/pr/build Pipeline was successful
2023-08-15 13:21:50 +02:00
3581af3192 Update .woodpecker/build.yml 2023-08-15 13:21:43 +02:00
7ef6d786cc Merge pull request 'fix: add missing pkg' (#5) from dev into master
Some checks failed
ci/woodpecker/push/build Pipeline was successful
ci/woodpecker/manual/build Pipeline failed
ci/woodpecker/cron/<no value> Pipeline was successful
ci/woodpecker/cron/build Pipeline failed
Reviewed-on: #5
2023-03-25 09:31:40 +01:00
f56a386f66 fix: add missing pkg
All checks were successful
ci/woodpecker/pr/build Pipeline was successful
2023-03-25 09:31:07 +01:00
0d83e3ae2d also push img to gitea (#4)
All checks were successful
ci/woodpecker/push/build Pipeline was successful
ci/woodpecker/cron/build Pipeline was successful
ci/woodpecker/push/build-dev Pipeline was successful
Reviewed-on: #4
2023-03-24 08:40:52 +01:00
2 changed files with 19 additions and 12 deletions

View File

@@ -3,10 +3,9 @@ when:
path:
include: [ '.woodpecker/build-dev.yml', 'Dockerfile', 'check.sh' ]
pipeline:
build_and_publish_gitea:
steps:
build_and_publish:
image: woodpeckerci/plugin-docker-buildx
registry: git.narvas.tech
settings:
repo: vistanarvas/container-update-checker,git.narvas.tech/vista/container-update-checker
tag: dev

View File

@@ -1,7 +1,7 @@
when:
branch: master
pipeline:
steps:
check_self:
# failure: ignore # this doesnt work
image: alpine
@@ -9,7 +9,7 @@ pipeline:
BASE: alpine:latest
TARGET: vistanarvas/${CI_REPO_NAME}:latest
commands:
- apk add curl jq
- apk add curl jq dateutils
- sh check.sh
when:
cron: nightly
@@ -17,14 +17,22 @@ pipeline:
build_and_publish:
image: woodpeckerci/plugin-docker-buildx
settings:
username: vistanarvas
password:
from_secret: DOCKERHUB_TOKEN
repo: vistanarvas/${CI_REPO_NAME}
auto_tag: true
when:
cron: nightly
path:
include: [ '.woodpecker/build.yml', 'Dockerfile', 'check.sh' ]
event: [push, tag, deployment, cron, manual]
event: [push, tag, deployment, cron, manual]
settings:
repo: vistanarvas/container-update-checker,git.narvas.tech/vista/container-update-checker
auto_tag: true
logins:
# Default DockerHub login
- registry: https://index.docker.io/v1/
username: vistanarvas
password:
from_secret: DOCKERHUB_TOKEN
# Additional Gitea login
- registry: https://git.narvas.tech
username: vista
password:
from_secret: GITEA_TOKEN