Skip to content

Commit b69d98d

Browse files
Merge pull request #905 from ArangoGutierrez/reg_test07
[no-relnote] fix step holodeck_public_dns_name variable name E2E
2 parents 1d0777e + adbe127 commit b69d98d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/e2e.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ on:
2727
jobs:
2828
e2e-tests:
2929
runs-on: linux-amd64-cpu4
30-
if: ${{ github.event.workflow_run.conclusion == 'success' }} && ${{ github.event.workflow_run.event == 'push' }}
30+
if: ${{ github.event.workflow_run.conclusion == 'success' }}
3131
steps:
3232
- name: Check out code
3333
uses: actions/checkout@v4
@@ -65,13 +65,13 @@ jobs:
6565
VERSION: ${COMMIT_SHORT_SHA}
6666
SSH_KEY: ${{ secrets.AWS_SSH_KEY }}
6767
E2E_SSH_USER: ${{ secrets.E2E_SSH_USER }}
68+
E2E_SSH_HOST: ${{ steps.holodeck_public_dns_name.outputs.result }}
6869
E2E_INSTALL_CTK: "true"
6970
run: |
7071
e2e_ssh_key=$(mktemp)
7172
echo "$SSH_KEY" > "$e2e_ssh_key"
7273
chmod 600 "$e2e_ssh_key"
7374
export E2E_SSH_KEY="$e2e_ssh_key"
74-
export E2E_SSH_HOST="${{ steps.get_public_dns_name.outputs.result }}"
7575
7676
make -f tests/e2e/Makefile test
7777

0 commit comments

Comments
 (0)