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: hugo-version: '0.79.1' - name: Build run: hugo --minify - name: Deploy to GitHub Pages uses: JamesIves/github-pages-deploy-action@4.1.1 with: token: ${{ secrets.ACCESS_TOKEN }} branch: master folder: public repository-name: actix/actix.github.io