Skip to content

Update _index.html

Update _index.html #5

Workflow file for this run

name: Deploy
on:
push:
branches: [ master, 'dev/*' ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: true
fetch-depth: 0
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: '0.89.0'
extended: true
- name: Build
run: hugo --minify --baseURL https://neurotechx.github.io/neurotech-challenge.com/
- name: Deploy Docs
uses: peaceiris/actions-gh-pages@v3
if: github.ref == 'refs/heads/master'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public