1
0
mirror of https://github.com/actix/actix-website synced 2025-01-22 16:15:56 +01:00

34 lines
804 B
YAML
Raw Normal View History

2020-07-18 14:44:20 +09:00
name: Build and Deploy
on:
push:
branches:
- master
jobs:
build-and-deploy:
runs-on: ubuntu-latest
if: github.repository == 'actix/actix-website'
steps:
- name: Checkout
uses: actions/checkout@v2
with:
persist-credentials: false # This is needed to deploy on checkout@v2
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
2020-12-22 03:18:10 +09:00
hugo-version: '0.79.1'
2020-07-18 14:44:20 +09:00
- name: Build
run: hugo --minify
- name: Deploy to GitHub Pages
2020-11-24 21:11:26 +00:00
uses: JamesIves/github-pages-deploy-action@3.7.1
2020-07-18 14:44:20 +09:00
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
BRANCH: master
FOLDER: public
REPOSITORY_NAME: actix/actix.github.io