Skip to content

Commit

Permalink
Remove quotes from network name
Browse files Browse the repository at this point in the history
  • Loading branch information
JVT038 committed Mar 22, 2024
1 parent 28ccf08 commit ce6f977
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- name: Get Docker network name of GitHub services
id: get_network
run: echo "NETWORK=$(docker ps --format '{{ json .Networks }}' --filter 'name=database')" >> "$GITHUB_OUTPUT"
run: echo "NETWORK=$(docker ps --format '{{ json .Networks }}' --filter 'name=database' | cut -d "\"" -f 2)" >> "$GITHUB_OUTPUT"

- name: Build docker development image
run: docker build --target development --tag movary ./build/php/
Expand Down

0 comments on commit ce6f977

Please sign in to comment.