add forgejo deploy
This commit is contained in:
parent
8fb101754d
commit
00fd5a97eb
2 changed files with 25 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
|||
when:
|
||||
- event:
|
||||
- manual
|
||||
- tag
|
||||
|
||||
steps:
|
||||
set-tags:
|
||||
|
|
24
.woodpecker/build-forgejo.yml
Normal file
24
.woodpecker/build-forgejo.yml
Normal file
|
@ -0,0 +1,24 @@
|
|||
when:
|
||||
- event: manual
|
||||
- event: cron
|
||||
cron: build_weekly
|
||||
|
||||
steps:
|
||||
set-tags:
|
||||
image: debian:12
|
||||
commands:
|
||||
- export TS=`date '+%Y%m%d%H%M%S'`
|
||||
- echo "latest" > tags.txt
|
||||
- echo "$TS" >> tags.txt
|
||||
- cat tags.txt
|
||||
docker-deploy-push:
|
||||
image: woodpeckerci/plugin-docker-buildx
|
||||
settings:
|
||||
dockerfile: Dockerfile
|
||||
platforms: linux/amd64 #,linux/arm/v7,linux/arm64/v8
|
||||
repo: code.lila.network/lauralani/netlify-cli
|
||||
registry: code.lila.network
|
||||
tags_file: ./tags.txt
|
||||
username: lauralani
|
||||
password:
|
||||
from_secret: forgejo_token
|
Loading…
Reference in a new issue