summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorAlex Shpak <alex-shpak@users.noreply.github.com>2019-08-22 23:01:33 +0200
committerAlex Shpak <alex-shpak@users.noreply.github.com>2019-08-22 23:06:13 +0200
commit817d096e43dd66ab3af01f4929a7e34cfd618bca (patch)
tree9cd995bb10fbcd0c1dfd1f6d945908f512972754 /.github
parent624cefb3c015994d4c2fe1a22dcd80225f07f25e (diff)
Add working directory to workflow
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/main.yml5
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 67ce3c3..635f08b 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -7,7 +7,10 @@ jobs:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@master
+
- name: Install Hugo
run: sudo apt-get install hugo
+
- name: Run Hugo
- run: (cd exampleSite; hugo)
+ working-directory: exampleSite
+ run: hugo --themesDir ../..