We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09f9398 commit c916742Copy full SHA for c916742
1 file changed
.github/actions/cleanup-and-coverage/action.yaml
@@ -20,11 +20,15 @@ runs:
20
- name: Stop CI services
21
run: |
22
PROFILES=""
23
- for profile in ${{ inputs.profiles }}; do
+ # Read from environment variable to avoid syntax issues
24
+ # related to gha templating
25
+ for profile in $INPUT_PROFILES; do
26
PROFILES="${PROFILES} --profile ${profile}"
27
done
28
docker compose ${PROFILES} down
29
shell: bash
30
+ env:
31
+ INPUT_PROFILES: ${{ inputs.profiles }}
32
working-directory: .github/docker
33
34
- name: Upload coverage reports to Codecov
0 commit comments