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 ad34a17 commit ba8e7bdCopy full SHA for ba8e7bd
script/cideploy
@@ -8,13 +8,9 @@ JEKYLL_OUTPUT_FOLDER=_site
8
9
echo "$GITHUB_EVENT_NAME"
10
11
-commitmessage=$(mktemp)
+commitmessage="Static commit message - $(date)"
12
trap 'rm -f "$commitmessage"' EXIT
13
14
-git log -1 --pretty=format:"GHA $GITHUB_RUN_NUMBER: \"%s\" by %an [%h] pushed to GitHub Pages
15
-
16
-%b" > "$commitmessage"
17
18
echo -e "Starting to deploy to Github Pages\n"
19
20
if [[ $GITHUB_ACTIONS == true ]]; then
@@ -39,7 +35,7 @@ touch .nojekyll
39
35
set -x
40
36
#add, commit and push files
41
37
git add -f -A
42
-git commit -F "$commitmessage"
38
+git commit -m "$commitmessage"
43
if [[ -z $NO_PUSH ]]; then
44
git push -fq origin test > /dev/null
45
fi
0 commit comments