1
0
mirror of https://github.com/actix/actix-website synced 2024-11-27 18:12:57 +01:00
actix-website/.github/workflows/deploy.yml

33 lines
745 B
YAML
Raw Normal View History

2020-07-18 07:44:20 +02: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-21 19:18:10 +01:00
hugo-version: '0.79.1'
2020-07-18 07:44:20 +02:00
- name: Build
run: hugo --minify
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@4.1.1
2020-07-18 07:44:20 +02:00
with:
token: ${{ secrets.ACCESS_TOKEN }}
branch: master
folder: public
repository-name: actix/actix.github.io