refactor: CI/CD pipelines #5

Merged
t.behrendt merged 6 commits from fix-cd-pipeline into main 2024-04-01 21:47:19 +02:00
4 changed files with 3 additions and 3 deletions
Showing only changes of commit 5e79f01fc4 - Show all commits

View File

@@ -12,13 +12,13 @@ jobs:
test: test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: ../actions/ci-action.yaml - uses: ./.gitea/workflows/ci-action.yaml
build_and_push: build_and_push:
runs-on: ubuntu-latest runs-on: ubuntu-latest
requires: requires:
- test - test
steps: steps:
- uses: ../actions/cd-action.yaml - uses: ./.gitea/workflows/cd-action.yaml
with: with:
DOCKER_REGISTRY: ${{ env.DOCKER_REGISTRY }} DOCKER_REGISTRY: ${{ env.DOCKER_REGISTRY }}

View File

@@ -13,4 +13,4 @@ jobs:
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v4
- uses: ../actions/ci-action.yaml - uses: ./.gitea/workflows/cd-action.yaml