Skip to content

Commit

Permalink
ci: fix volume paths
Browse files Browse the repository at this point in the history
  • Loading branch information
saw-jan committed May 7, 2024
1 parent fcabbec commit 452b434
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ jobs:
- name: host-ip
id: host_ip
run: echo "::set-output name=host_ip::$(hostname -I | cut -d' ' -f1)"
run: echo "host_ip=$(hostname -I | cut -d' ' -f1)" >> $GITHUB_OUTPUT

- name: wait-services
run: docker run --rm --add-host=local.host=${{ steps.host_ip.outputs.host_ip }} owncloudci/wait-for -it local.host:8443 -t 10
run: docker run --rm --add-host=host.docker.internal="$host_ip" owncloudci/wait-for -it host.docker.internal:8443 -t 10

# e2e:
# runs-on: ubuntu-latest
Expand Down

0 comments on commit 452b434

Please sign in to comment.