mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-10-31 23:26:18 +00:00
a206dccf0a
* Parameterize strings that mention Travis This is so that the script can be shared with GitHub Actions while we make the transition. * Add GitHub Actions workflow More or less a direct translation of .travis.yml * Rename scripts that mention travis * Fix typo
11 lines
326 B
Bash
Executable File
11 lines
326 B
Bash
Executable File
#!/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
|