Skip to content

Commit

Permalink
feat: Change outout folder name
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-mkc19 authored Mar 15, 2023
1 parent 591b016 commit 4d5faea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ if [ -n "$PELICAN_THEME_FOLDER" ]; then
fi

echo 'Building site 👷 '
pelican ${PELICAN_CONTENT_FOLDER:=content} -o output -s ${PELICAN_CONFIG_FILE:=publishconf.py}
pelican ${PELICAN_CONTENT_FOLDER:=content} -o docs -s ${PELICAN_CONFIG_FILE:=publishconf.py}

echo 'Publishing to GitHub Pages 📤 '
git config --global --add safe.directory /github/workspace
Expand All @@ -33,7 +33,7 @@ if [ "$GH_PAGES_CNAME" != "none" ]
then
echo "$GH_PAGES_CNAME" > CNAME
fi
git add output
git add .

echo -n 'Files to Commit:' && ls -l | wc -l
git commit -m "[ci skip] Automated deployment to GitHub Pages on $(date +%s%3N)"
Expand Down

0 comments on commit 4d5faea

Please sign in to comment.