21 lines
473 B
YAML
21 lines
473 B
YAML
name: build-caddy
|
|
on:
|
|
schedule:
|
|
- cron: '0 6 * * 1'
|
|
workflow_dispatch: {}
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: docker/login-action@v3
|
|
with:
|
|
registry: git.penate.io
|
|
username: ${{ gitea.actor }}
|
|
password: ${{ secrets.GITEA_TOKEN }}
|
|
- uses: docker/build-push-action@v6
|
|
with:
|
|
push: true
|
|
tags: git.parsell.me/you/caddy-custom:latest
|