second try
This commit is contained in:
parent
9c87ac5951
commit
932103545d
1 changed files with 2 additions and 1 deletions
3
.github/workflows/update-server.yml
vendored
3
.github/workflows/update-server.yml
vendored
|
@ -6,13 +6,14 @@ jobs:
|
||||||
name: validate the new configuration
|
name: validate the new configuration
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
|
||||||
- name: install packages
|
- name: install packages
|
||||||
run: |
|
run: |
|
||||||
apt update -y
|
apt update -y
|
||||||
apt install -y docker-compose
|
apt install -y docker-compose
|
||||||
|
- uses: actions/checkout@v3
|
||||||
- name: validate files
|
- name: validate files
|
||||||
run: |
|
run: |
|
||||||
|
set -e
|
||||||
DC_ARGS=""
|
DC_ARGS=""
|
||||||
for file in docker-compose.*.yml; do
|
for file in docker-compose.*.yml; do
|
||||||
DC_ARGS="-f $file "
|
DC_ARGS="-f $file "
|
||||||
|
|
Reference in a new issue