From fa91a7bbc10796fc3c43909b148f0dff57214317 Mon Sep 17 00:00:00 2001 From: Zakary Timson Date: Mon, 7 Aug 2023 15:03:12 +0000 Subject: [PATCH] Update git/checkout/action.yaml --- git/checkout/action.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/git/checkout/action.yaml b/git/checkout/action.yaml index 30d1ad9..58205e2 100644 --- a/git/checkout/action.yaml +++ b/git/checkout/action.yaml @@ -12,6 +12,5 @@ runs: options: -v ${{ github.workspace }}:/git run: | HOST=$(echo "${{ github.server_url }}" | sed 's%https://%%') - URL="https://${{ github.token }}@$HOST/${{ github.repository }}.git" - git clone -b "${{ github.ref_name }}" "$URL" . - git status && ls + git clone -b "${{ github.ref_name }}" "https://${{ github.token }}@$HOST/${{ github.repository }}.git" . + git status && echo "" && ls