Skip to content

Commit

Permalink
build minimal release only when tests succeed.
Browse files Browse the repository at this point in the history
  • Loading branch information
toots committed Jan 20, 2025
1 parent 66e12e8 commit 8c3c3ab
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -829,7 +829,13 @@ jobs:

build_docker_release-minimal:
runs-on: depot-ubuntu-24.04-4
needs: [build_details, build_docker_minimal, build_docker_alpine_minimal]
needs:
[
build_details,
run_tests,
build_docker_minimal,
build_docker_alpine_minimal,
]
if: needs.build_details.outputs.docker_release
steps:
- name: Checkout code
Expand Down

0 comments on commit 8c3c3ab

Please sign in to comment.