mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-10-31 23:26:18 +00:00
16 lines
464 B
Bash
Executable File
16 lines
464 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Push output back to GitHub
|
|
|
|
# Exit script immediately if any command fails
|
|
set -e
|
|
|
|
cd output
|
|
git config --global user.email "actions@github.com"
|
|
git config --global user.name "GitHub Actions"
|
|
git add -A .
|
|
git commit --message "GitHub build: $GITHUB_RUN_NUMBER of $TW5_BUILD_BRANCH ($(date +'%F %T %Z'))"
|
|
git remote add deploy "https://$GH_TOKEN@github.com/TiddlyWiki/tiddlywiki.com-gh-pages.git" &>/dev/null
|
|
git push deploy master &>/dev/null
|
|
cd ..
|