Skip to content

wood texture optimized a little bit more, .mkiv manual updated #2

wood texture optimized a little bit more, .mkiv manual updated

wood texture optimized a little bit more, .mkiv manual updated #2

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "master" branch
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build:
runs-on: ubuntu-latest
container: texlive/texlive:latest
steps:
- uses: actions/checkout@v3
# Runs a single command using the runners shell
- name: Build the pdf
run: lualatex -interaction=nonstopmode fiziko.tex
- uses: actions/upload-artifact@v3
with:
name: pdf
path: fiziko.pdf