Skip to content

CI: deprecate releases #1533

CI: deprecate releases

CI: deprecate releases #1533

Workflow file for this run

# SPDX-FileCopyrightText: Copyright 2021, 2026 Arm Limited and/or its affiliates <open-source-office@arm.com>
#
# SPDX-License-Identifier: Apache-2.0
name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.7
- name: check the correctness of the sources and generate the PDFs
run: ./build_with_docker.sh --finalversion
- uses: actions/upload-artifact@v4.4.0
with:
name: pdfs
path: pdfs
build-github-pages:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.7
- name: generate the GitHub Pages locally in order to check for errors
run: ./tools/build-github-pages.sh build
markdown-link-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.7
- name: Install markdown-link-check
run: npm install -g markdown-link-check
- name: Check links
run: |
find . -name '*.md' -print0 | \
xargs -0 -n 1 python3 .github/scripts/check_links.py