Skip to content
This repository was archived by the owner on May 17, 2022. It is now read-only.

Commit f6cace1

Browse files
committed
ci: install samdoran.caddy dependency
1 parent b5c9a61 commit f6cace1

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/test.yml

+2
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,8 @@ jobs:
9292
proxied: 0
9393
token: "${{ secrets.CLOUDFLARE_TOKEN }}"
9494
zone: "${{ secrets.CLOUDFLARE_ZONE }}"
95+
- name: Install samdoran.caddy dependency
96+
run: ansible-galaxy install samdoran.caddy,2.1.0
9597
- uses: getstackhead/stackhead/actions/integration-test@next
9698
with:
9799
ipaddress: ${{ steps.setup_server.outputs.hcloud_server_created_ipv4 }}

tasks/steps/setup.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
- restart caddy
1212
- name: Check content after provisioning
1313
uri:
14-
url: "http://{{ ansible_default_ipv4.address|default(ansible_all_ipv4_addresses[0]) }}"
14+
url: "https://{{ ansible_default_ipv4.address|default(ansible_all_ipv4_addresses[0]) }}"
1515
return_content: yes
1616
register: uri_result
17-
until: '"Caddy web server" in uri_result.content'
17+
until: '"Caddy" in uri_result.content'
1818
retries: 5
1919
delay: 1

0 commit comments

Comments
 (0)