Skip to content

Rename the schema file #125

Rename the schema file

Rename the schema file #125

Workflow file for this run

# Copyright 2020-2021 The Khronos Group Inc.
# SPDX-License-Identifier: Apache-2.0
# CI to build asciidoctor spec targets
name: CI
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the default branch
push:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Use Khronos container with asciidoctor toolchain preinstalled
container: khronosgroup/docker-images:asciidoctor-spec
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
# REUSE license checker
- name: license-check
run: |
reuse lint
# Build spec targets
- name: spec-generate
run: |
cd specification/2.0
make Specification.html Specification.pdf
- name: Archive generated files
uses: actions/upload-artifact@v2
with:
name: spec-outputs
path: |
specification/2.0/Specification.html
specification/2.0/Specification.pdf