Skip to content

Update InstallTCDocker.md #9054

Update InstallTCDocker.md

Update InstallTCDocker.md #9054

# This is a basic workflow to help you get started with Actions
name: 'Internal Contributor Build Preview'
# Controls when the action will run.
on:
pull_request:
branches: [master]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
deploy:
if: github.event.pull_request.head.repo.full_name == github.repository
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
- uses: pnpm/action-setup@v4
with:
version: latest
- name: Setup Hugo
uses: peaceiris/[email protected]
with:
hugo-version: '0.117.0'
extended: true
- name: Install dependencies
run: pnpm i
- name: Print PNPM modules after install
run: du -d 0 -h ~/.pnpm-store/*/*/* || true
- name: Build Hugo Site
run: hugo -d public --gc --minify