Skip to content

Commit 3f2c865

Browse files
committed
chore: silence warnings
1 parent a347659 commit 3f2c865

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/admin_fetch_updated_apps.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,7 @@ jobs:
3131
- name: Fetch Updated Apps
3232
run: |
3333
source ./cicd-deployment-scripts/admin/fetch_updated_apps.sh
34-
cp .env.example .env
35-
cat .env.${{ github.ref_name }} >> .env
34+
cp .env.${{ github.ref_name }} .env
3635
3736
fetch_updated_apps ${{ github.repository_owner }}
3837

admin/fetch_updated_apps.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export THIRD_PARTY_SERVICES=(
1212

1313

1414
function get_docker_compose_services() {
15-
for service in $(docker compose config --services); do
15+
for service in $(docker --log-level ERROR compose config --services); do
1616
is_third_party_service="false"
1717
for tps in ${THIRD_PARTY_SERVICES[@]}; do
1818
if [[ "${service}" == "${tps}" ]]; then

0 commit comments

Comments
 (0)