Pd 1136 update 24 04 release notes guidance on user home directory change #7728
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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: [24.04] | |
# 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/[email protected] | |
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 |