fix: workflows referencing actions
Some checks failed
CI / test (pull_request) Failing after 43s

This commit is contained in:
2024-04-01 21:28:48 +02:00
parent 798c4a3240
commit 9dc3feecf4
2 changed files with 13 additions and 5 deletions

View File

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