mirror of https://github.com/kc0bfv/ticky_tacky_dark.git

Karl
25.28.2020 f9fb5b08eb3edd8469f3033381f96079624fee46
Setup for CI
1 files deleted
2 files added
28 ■■■■■ changed files
.travis.yml 15 ●●●●● patch | view | raw | blame | history
Makefile 12 ●●●●● patch | view | raw | blame | history
exampleSite/themes/ticky_tacky_dark 1 ●●●● patch | view | raw | blame | history
.travis.yml
New file
@@ -0,0 +1,15 @@
language: generic
install:
  - sudo snap install hugo
script:
  - make
deploy:
  provider: pages
  skip_cleanup: true
  github_token: $GITHUB_TOKEN
  keep_history: true
  local_dir: exampleSite/public
  on:
    branch: master
Makefile
New file
@@ -0,0 +1,12 @@
EXAMPLE_SITE := exampleSite
CONFIG_GH_PAGES := config_for_github_pages.toml
CONFIG := config.toml
THEMES := ../../
public:
    hugo -s ${EXAMPLE_SITE} --config ${CONFIG_GH_PAGES} --themesDir ${THEMES}
server:
    hugo -s ${EXAMPLE_SITE} --themesDir ${THEMES} server
.PHONY: public server
exampleSite/themes/ticky_tacky_dark
File was deleted