Skip to content

Commit

Permalink
feat(container): copy '.git' folder from WORKPATH
Browse files Browse the repository at this point in the history
  • Loading branch information
heyhusen committed May 30, 2021
1 parent 8987dba commit 3aa6342
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ echo '::group::Copying file from $WORKPATH to /tmp/gh-action'
WORKPATH=$GITHUB_WORKSPACE/$INPUT_PATH
# Set path permision
sudo -u builder mkdir /tmp/gh-action
sudo -u builder cp -rfv ./.git /tmp/gh-action/.git
sudo -u builder cp -rfv $WORKPATH/.git /tmp/gh-action/.git
sudo -u builder cp -fv $WORKPATH/PKGBUILD /tmp/gh-action/PKGBUILD
cd /tmp/gh-action
echo '::endgroup::'
Expand Down

0 comments on commit 3aa6342

Please sign in to comment.