We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Stop DBs
1 parent f13b51f commit 19f1aadCopy full SHA for 19f1aad
.github/workflows/release-feature-branch.yaml
@@ -279,11 +279,9 @@ jobs:
279
run: |
280
set -euxo pipefail
281
282
- containers=${{ join(matrix.dbs, ' ') }}
283
-
284
- if [ -n "$containers" ]; then
+ if [ -n "${{ join(matrix.dbs, ' ') }}" ]; then
285
compose_files=()
286
- for db in $containers; do
+ for db in ${{ join(matrix.dbs, ' ') }}; do
287
case "$db" in
288
postgres) compose_files+=("-f" "compose/postgres.yml") ;;
289
postgres-postgis) compose_files+=("-f" "compose/postgres-postgis.yml") ;;
0 commit comments