notebook: add section for user_namespace security class #22
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
# | |
# Github Action to build The SELinux Notebook | |
# | |
# Copyright (c) 2022 Microsoft Corporation <[email protected]> | |
# Author: Paul Moore <[email protected]> | |
# | |
name: EPUB build | |
on: ["push", "pull_request"] | |
jobs: | |
epub: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout from GitHub | |
uses: actions/checkout@v2 | |
- name: Setup the build directory | |
uses: ./.github/actions/setup | |
- name: Run the build | |
run: make epub | |
- name: Archive the rendering | |
uses: actions/upload-artifact@v3 | |
with: | |
name: EPUB rendering | |
path: ./epub/SELinux_Notebook.azw3 |