summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorAlex Shpak <alex-shpak@users.noreply.github.com>2019-08-22 22:46:28 +0200
committerGitHub <noreply@github.com>2019-08-22 22:46:28 +0200
commitface62569eba13e834f09bbf8df4c43ae7cc98f3 (patch)
treeecef4ea75b1b7b82dfeb16d712c4d3491ca23fe0 /.github
parent424ff16092a3956f3dc4fdca057d5f3d6fcfc928 (diff)
Create hugo github action
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/main.yml12
1 files changed, 12 insertions, 0 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
new file mode 100644
index 0000000..fcd4c25
--- /dev/null
+++ b/.github/workflows/main.yml
@@ -0,0 +1,12 @@
+name: Build Example Site
+
+on: [push]
+
+jobs:
+ hugo:
+ container: klakegg/hugo:ext-alpine
+ steps:
+ - name: Install Hugo
+ run: apt-get install hugo
+ - name: Run Hugo
+ run: (cd exampleSite; hugo)