Make Docker workflow depend on tests

This commit is contained in:
Zed 2023-04-21 23:43:46 +02:00
parent b67f3062fe
commit fe22a45c7e
2 changed files with 7 additions and 0 deletions

View File

@ -8,7 +8,10 @@ on:
- master
jobs:
tests:
uses: ./.github/workflows/run-tests.yml
build-docker-amd64:
depends: [tests]
runs-on: buildjet-2vcpu-ubuntu-2204
steps:
- uses: actions/checkout@v3
@ -33,6 +36,7 @@ jobs:
push: true
tags: zedeus/nitter:latest,zedeus/nitter:${{ github.sha }}
build-docker-arm64:
depends: [tests]
runs-on: buildjet-2vcpu-ubuntu-2204-arm
steps:
- uses: actions/checkout@v3

View File

@ -4,6 +4,9 @@ on:
push:
paths-ignore:
- "*.md"
branches-ignore:
- master
workflow_call:
jobs:
test: