diff --git a/.gitea/workflows/deployment.yml b/.gitea/workflows/deployment.yml index 3b22ea29..b006aae9 100644 --- a/.gitea/workflows/deployment.yml +++ b/.gitea/workflows/deployment.yml @@ -135,8 +135,8 @@ jobs: - name: Generate README list id: readme-list run: | - yq ".services | to_entries | map({service: .key, image: .value.image})" docker-compose.yml - services_list=$(yq '.services | to_entries | map({service: .key, image: .value.image})' docker-compose.yml) + yq '.services | to_entries | map({"service": .key, "image": .value.image})' docker-compose.yml + services_list=$(yq '.services | to_entries | map({"service": .key, "image": .value.image})' docker-compose.yml) echo "SERVICES_LIST=${services_list}" >> $GITHUB_ENV - run: echo "${{ env.SERVICES_LIST }}"