Add TRACE prefix (#2417) #424
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
# 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 | |
# 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 |