diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..a56da9f --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,27 @@ +name: github pages + +on: + push: + branches: + - site + +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: '0.58.3' + + - name: Build + run: hugo --gc --minify --cleanDestinationDir + + - 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