We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e487615 commit 702e4ebCopy full SHA for 702e4eb
.github/workflows/cleanup.sh
@@ -6,8 +6,10 @@ for folder in $TARGETS; do
6
for f in $(ls -a); do
7
if [ "$f" != "." ] &&
8
[ "$f" != ".." ] &&
9
- [ "$f" != "_github_home" ] # __w/_temp/_github_home is mount as
10
- # /github/home and is cleaned separately
+ [ "$f" != "_github_home" ] && # __w/_temp/_github_home is mount as
+ # /github/home and is cleaned separately
11
+ [ "$f" != "_github_workflow" ] # Contains workflow metadata, is needed
12
+ # for the correct workflow execution
13
then
14
rm -rf "$f"
15
fi
0 commit comments