Create main.yml
Athul Cyriac Ajay athul8720@gmail.com
Sat, 11 Apr 2020 11:50:25 +0530
1 files changed,
27 insertions(+),
0 deletions(-)
jump to
A
.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