We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d2a8dc2 + 784b17b commit d205753Copy full SHA for d205753
1 file changed
deploy.sh
@@ -113,6 +113,11 @@ if [[ "$BUILD_DIR" = false ]]; then
113
git config --global user.email "10upbot+github@10up.com"
114
git config --global user.name "10upbot on GitHub"
115
116
+ # Ensure git archive will pick up any changed files in the directory try.
117
+ test $(git ls-files --deleted) && git rm $(git ls-files --deleted)
118
+ git add .
119
+ git commit -m "Include build step changes"
120
+
121
# If there's no .gitattributes file, write a default one into place
122
if [[ ! -e "$GITHUB_WORKSPACE/.gitattributes" ]]; then
123
cat > "$GITHUB_WORKSPACE/.gitattributes" <<-EOL
0 commit comments