#120 Try using the docker/cli action
Some checks failed
Docker Compose Config / docker-compose-config (push) Failing after 3s
First Gitea Action / my-shell-script (push) Successful in 12s

This commit is contained in:
Joey Hafner 2024-02-12 22:34:59 -08:00
parent d99e178f9d
commit b410f5890f

View File

@ -11,6 +11,10 @@ jobs:
- name: Get location of all docker-compose.yaml files
run: |
for compose in $(find "$PWD"/ -name docker-compose.yml); do
echo $(dirname $compose)
echo $(dirname $compose)/
done
- name: Compose Config
uses: "actions/docker/cli@master"
with:
args: compose config
- run: echo "Job status ${{ job.status }}"