13 lines
344 B
YAML
13 lines
344 B
YAML
name: build
|
|
run-name: ${{ gitea.actor }} is building caddy
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: podman
|
|
steps:
|
|
- 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
|