Skip to content

docs: update thinking-protocol-1 formatting and add thinking-protocol… #105

docs: update thinking-protocol-1 formatting and add thinking-protocol…

docs: update thinking-protocol-1 formatting and add thinking-protocol… #105

Workflow file for this run

name: Build
on:
push:
branches:
- main
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository (with submodules)
uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 0
- name: Set up Hugo
uses: peaceiris/actions-hugo@v3
with:
hugo-version: '0.147.0'
extended: true
- name: Build Hugo site
run: hugo --minify --cleanDestinationDir --baseURL "https://vgnshwar.github.io/"
- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./public
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4