Skip to content

Updating cname (#46) #8

Updating cname (#46)

Updating cname (#46) #8

Workflow file for this run

name: Build and Push
on:
# For manual testing
workflow_dispatch:
push:
branches:
- master
jobs:
build_and_ping:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: true
- run: curl -s -L https://github.com/getzola/zola/releases/download/v0.8.0/zola-v0.8.0-x86_64-unknown-linux-gnu.tar.gz | sudo tar xvzf - -C /usr/local/bin
- run: zola build
- run: touch public/.nojekyll
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public
user_name: "github-actions[bot]"
user_email: "github-actions[bot]@users.noreply.github.com"