Skip to content

Commit bcaa69f

Browse files
committed
Update
1 parent 3791ba2 commit bcaa69f

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/ci.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,23 @@ on:
1010

1111
jobs:
1212

13+
1314
test-e2e:
1415
name: Run end-to-end tests
1516
runs-on: ubuntu-latest
1617
strategy:
1718
matrix:
1819
k3s-version: [ v1.27.1 ]
1920
steps:
21+
- name: Public IP
22+
id: ip
23+
uses: haythem/[email protected]
24+
25+
# - name: See IP Addresses
26+
# run: |
27+
# echo ${{ steps.ip.outputs.ipv4 }}
28+
# echo ${{ steps.ip.outputs.ipv6 }}
29+
2030
- name: Install k3d
2131
run: |
2232
set -x
@@ -59,7 +69,7 @@ jobs:
5969
6070
ARGO_CD_SERVER_ADDR=127.0.0.1:51212 make start-e2e &
6171
62-
OVERRIDE_APISERVER_ADDR_SOURCE="0.0.0.0" OVERRIDE_APISERVER_ADDR_DEST="192.168.8.152" make test-e2e
72+
OVERRIDE_APISERVER_ADDR_SOURCE="0.0.0.0" OVERRIDE_APISERVER_ADDR_DEST="${{ steps.ip.outputs.ipv4 }}" make test-e2e
6373
6474
make e2e-reset
6575
pkill go

0 commit comments

Comments
 (0)