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.
1 parent a347659 commit 3f2c865Copy full SHA for 3f2c865
.github/workflows/admin_fetch_updated_apps.yml
@@ -31,8 +31,7 @@ jobs:
31
- name: Fetch Updated Apps
32
run: |
33
source ./cicd-deployment-scripts/admin/fetch_updated_apps.sh
34
- cp .env.example .env
35
- cat .env.${{ github.ref_name }} >> .env
+ cp .env.${{ github.ref_name }} .env
36
37
fetch_updated_apps ${{ github.repository_owner }}
38
admin/fetch_updated_apps.sh
@@ -12,7 +12,7 @@ export THIRD_PARTY_SERVICES=(
12
13
14
function get_docker_compose_services() {
15
- for service in $(docker compose config --services); do
+ for service in $(docker --log-level ERROR compose config --services); do
16
is_third_party_service="false"
17
for tps in ${THIRD_PARTY_SERVICES[@]}; do
18
if [[ "${service}" == "${tps}" ]]; then
0 commit comments