From 875675786be2e9a079a96f737ddccf08e9b871ac Mon Sep 17 00:00:00 2001 From: Andre Beging Date: Thu, 5 Mar 2020 17:13:03 +0100 Subject: [PATCH] Create main.yml --- .github/workflows/main.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..fed89aa --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,27 @@ +name: github pages + +on: + push: + branches: + - master + +jobs: + build-deploy: + runs-on: ubuntu-18.04 + steps: + - uses: actions/checkout@master + + - name: Setup Hugo + uses: peaceiris/actions-hugo@v2.2.0 + with: + hugo-version: 'latest' + + - name: Build + run: hugo --gc --cleanDestinationDir --baseURL https://science-slam-siegen.de/ -v + + - name: Deploy + uses: peaceiris/actions-gh-pages@v2.4.0 + env: + ACTIONS_DEPLOY_KEY: ${{ secrets.ACTIONS_DEPLOY_KEY }} + PUBLISH_BRANCH: gh-pages + PUBLISH_DIR: ./public