facepalm; fixed the env issue
This commit is contained in:
parent
343be62fc5
commit
c42da07991
1 changed files with 1 additions and 3 deletions
4
.github/workflows/update-server.yml
vendored
4
.github/workflows/update-server.yml
vendored
|
@ -14,11 +14,9 @@ jobs:
|
|||
- name: validate files
|
||||
run: |
|
||||
set -e
|
||||
ls ${{github.workspace}}
|
||||
ls .
|
||||
DC_ARGS=""
|
||||
for file in docker-compose.*.yml; do
|
||||
DC_ARGS="-f $file "
|
||||
DC_ARGS="$DC_ARGS -f $file"
|
||||
done
|
||||
echo $DC_ARGS
|
||||
docker-compose $DC_ARGS config -q
|
||||
|
|
Reference in a new issue