Files
realDynDNS/.gitea/workflows/cd.yaml
Workflow config file is invalid. Please check your config file: yaml: line 21: did not find expected '-' indicator
2024-04-01 21:39:22 +02:00

25 lines
389 B
YAML

name: CD
on:
push:
branches:
- main
env:
DOCKER_REGISTRY: gitea.t000-n.de
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: ./.gitea/workflows/ci-action.yaml
build_and_push:
runs-on: ubuntu-latest
requires:
- test
steps:
- uses: ./.gitea/workflows/cd-action.yaml
with:
DOCKER_REGISTRY: ${{ env.DOCKER_REGISTRY }}