Skip to content

Verify Build

Verify Build #335

Workflow file for this run

name: Verify Build
on:
push:
branches:
- asciidoc
jobs:
Build:
runs-on: ubuntu-latest
steps:

Check failure on line 9 in .github/workflows/verify.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/verify.yml

Invalid workflow file

You have an error in your yaml syntax on line 9
- uses: actions/checkout@v2
- run: sudo apt-get update
- run: >
# Pull the latest RISC-V Docs container image
- name: Pull Container
id: pull_container_image
run: |
docker pull riscvintl/riscv-docs-base-container-image:latest
# Build PDF and HTML files using the container
- name: Build Files
id: build_files
if: steps.pull_container_image.outcome == 'success'
run: |
docker run --rm -v ${{ github.workspace }}:/build riscvintl/riscv-docs-base-container-image:latest \
/bin/sh -c 'cd ./build && make'