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