Skip to content
This repository has been archived by the owner on Sep 13, 2024. It is now read-only.

Add build steps for slides #5

Add build steps for slides

Add build steps for slides #5

Workflow file for this run

name: Build and release slides
on:
release:
types:
- published
- edited
jobs:
release-slides:

Check failure on line 10 in .github/workflows/release_slides.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/release_slides.yml

Invalid workflow file

You have an error in your yaml syntax on line 10
runs-on: ubuntu-latest
container: ghcr.io/open-s4c/latex:latest
permissions:
contents: write
packages: write
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.event.release.tag_name }}
- name: Build
run: |
make -C slides LATEXMK=latexmk
cp slides/slides.pdf slides-${{ github.event.release.tag_name }}.pdf
- name: Release
uses: softprops/action-gh-release@v2
with:
files: slides-${{ github.event.release.tag_name }}.pdf