From eab54a6d2bb48bdd8bccd4be338b7009924487dc Mon Sep 17 00:00:00 2001 From: Ximon Eighteen <3304436+ximon18@users.noreply.github.com> Date: Tue, 9 Mar 2021 11:48:22 +0100 Subject: [PATCH] GH e2e workflow fix? and extra diagnostic output --- .github/workflows/e2e.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 7c9de6e6..bb9db3f9 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -52,11 +52,12 @@ jobs: id: pick_e2e_branch shell: bash run: | + echo "GITHUB_REF=${GITHUB_REF}" BRANCH=${GITHUB_REF#refs/heads/} if git ls-remote --exit-code --heads https://github.com/NLnetLabs/rpki-deploy ${BRANCH}; then echo "::set-output name=branch::${BRANCH}" else - echo "::set-output name=success::master" + echo "::set-output name=branch::master" fi - name: Checkout the E2E test framework