From 837fbd88a1f93848a9fed40c06efff91e8282162 Mon Sep 17 00:00:00 2001 From: Zakary Timson Date: Fri, 24 Nov 2023 00:26:14 +0000 Subject: [PATCH] Update git/checkout/action.yaml --- git/checkout/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git/checkout/action.yaml b/git/checkout/action.yaml index d17d25f..f465239 100644 --- a/git/checkout/action.yaml +++ b/git/checkout/action.yaml @@ -3,6 +3,7 @@ desciption: Checkout repository using alpite/git runs: using: composite + container: git steps: - name: Checkout repository run: | @@ -11,4 +12,3 @@ runs: git clone -b "${{ github.ref_name }}" "https://${{ github.token }}@$HOST/${{ github.repository }}.git" . mv -n /tmp/workspace/* . && rm -rf /tmp/workspace git status && echo "" && ls - shell: sh