Final edit to Security Chapter - Today's Changes Only #319
Workflow file for this run
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
name: Check for build (Windows) | |
on: | |
pull_request: | |
branches: | |
- main | |
- dev | |
jobs: | |
build-windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Quarto | |
uses: quarto-dev/quarto-actions/setup@v2 | |
- name: Install TinyTeX | |
run: quarto install tinytex | |
- name: Build on Windows | |
run: quarto render | |
- name: Upload artifact from Windows | |
if: ${{ github.event_name == 'pull_request' }} | |
uses: actions/upload-artifact@v3 | |
with: | |
name: _book-windows | |
path: _book |