11 lines
297 B
YAML
11 lines
297 B
YAML
|
name: build
|
||
|
run-name: ${{ gitea.actor }} is building caddy
|
||
|
on: [push]
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
run: |
|
||
|
echo "${{ secrets.MEATBAG_REGISTRY_TOKEN }}" | podman login --username registry --password-stdin registry.meatbag.se
|
||
|
podman build -t meatbag/caddy:latest .
|
||
|
podman push meatbag/caddy
|