From 8b8848f500433d499adbea6d7ca5870ed76ef91e Mon Sep 17 00:00:00 2001 From: Oliver Ni Date: Wed, 24 Apr 2024 01:11:42 -0700 Subject: [PATCH] fix: copy not move --- .github/workflows/cluster-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cluster-ci.yml b/.github/workflows/cluster-ci.yml index 6d61202..cd911fa 100644 --- a/.github/workflows/cluster-ci.yml +++ b/.github/workflows/cluster-ci.yml @@ -34,7 +34,7 @@ jobs: CLONE_DIR=$(mktemp -d) git clone --single-branch --depth 1 git@github.com:ocf/cluster.git $CLONE_DIR - mv _out/* $CLONE_DIR + cp -r _out/* $CLONE_DIR cd $CLONE_DIR git config --bool core.bare false git config --bool push.autoSetupRemote true