mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-23 18:17:20 +00:00
Update CI scripts
This commit is contained in:
parent
68b455565b
commit
87dc67d0cd
10
bin/ci-pre-build.sh
Executable file
10
bin/ci-pre-build.sh
Executable file
@ -0,0 +1,10 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Install latest current release from npm
|
||||||
|
# (we need to force because otherwise npm will refuse to install a module of the same name)
|
||||||
|
|
||||||
|
npm --force install tiddlywiki || exit 1
|
||||||
|
|
||||||
|
# Pull existing GitHub pages content
|
||||||
|
|
||||||
|
git clone --depth=1 --branch=master "https://github.com/Jermolene/jermolene.github.io.git" output
|
20
bin/ci-push.sh
Executable file
20
bin/ci-push.sh
Executable file
@ -0,0 +1,20 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Push output back to GitHub
|
||||||
|
|
||||||
|
|
||||||
|
cd output || exit 1
|
||||||
|
|
||||||
|
git config --global user.email "actions@github.com" || exit 1
|
||||||
|
|
||||||
|
git config --global user.name "GitHub Actions" || exit 1
|
||||||
|
|
||||||
|
git add -A . || exit 1
|
||||||
|
|
||||||
|
git commit --message "GitHub build: $GITHUB_RUN_NUMBER of $TW5_BUILD_BRANCH ($(date +'%F %T %Z'))" || exit 1
|
||||||
|
|
||||||
|
git remote add deploy "https://$GH_TOKEN@github.com/Jermolene/jermolene.github.io.git" &>/dev/null || exit 1
|
||||||
|
|
||||||
|
git push deploy master &>/dev/null || exit 1
|
||||||
|
|
||||||
|
cd .. || exit 1
|
Loading…
Reference in New Issue
Block a user