1
0
mirror of https://blitiri.com.ar/repos/chasquid synced 2026-01-02 17:07:02 +00:00

github: Docker public image build doesn't depend on coverage

Today, the step to build the Docker public image depends on the coverage
run. This dependency isn't necessary, as the coverage could be failing
for a variety of reasons (e.g. codecov being down) and doesn't signal
any problem with chasquid itself.

So this patch fixes that: if the integration tests pass, then that is
good enough for building the public image.
This commit is contained in:
Alberto Bertogli
2025-03-30 21:35:03 +01:00
parent fa074ec16c
commit 2a2607f5d8

View File

@@ -57,7 +57,7 @@ jobs:
public-image:
runs-on: ubuntu-latest
timeout-minutes: 15
needs: [integration, coverage]
needs: [integration]
if: github.event_name == 'push'
steps:
- uses: actions/checkout@v4