add language HCL #1441
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
name: "Validate flake & check documentation" | |
on: | |
pull_request: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
paths: | |
- docs/** | |
jobs: | |
flake-docs-check: | |
name: Validate Flake Documentation | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
package: | |
- docs | |
- docs-html | |
- docs-manpages | |
- docs-json | |
steps: | |
- uses: easimon/maximize-build-space@v10 | |
with: | |
overprovision-lvm: true | |
remove-android: true | |
remove-dotnet: true | |
remove-haskell: true | |
- name: Install Nix | |
uses: DeterminateSystems/nix-installer-action@main | |
- uses: DeterminateSystems/magic-nix-cache-action@main | |
- uses: actions/checkout@v4 | |
name: Checkout | |
- name: Set default git branch (to reduce log spam) | |
run: git config --global init.defaultBranch main | |
- name: Build documentation packages | |
run: nix build .#${{ matrix.package }} --print-build-logs | |
- name: Get current date | |
id: get-date | |
# output format: 2023-12-22-120000 | |
run: echo "date=$(date +'%Y-%m-%d-%H%M%S')" >> ${GITHUB_OUTPUT} | |
- name: Upload doc artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: "${{ matrix.package }}" | |
path: result/share/doc/nvf |