Skip to content

docs(sample): Change comparison to be against an actual Times New Rom… #365

docs(sample): Change comparison to be against an actual Times New Rom…

docs(sample): Change comparison to be against an actual Times New Rom… #365

Workflow file for this run

name: Fontship
on: [push, pull_request]
jobs:
fontship:
name: Fontship
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Fetch tags
run: |
git fetch --prune --tags ||:
- name: Setup prerequisites
run: | sudo apt-get -qq install fonts-texgyre

Check failure on line 20 in .github/workflows/fontship.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/fontship.yml

Invalid workflow file

You have an error in your yaml syntax on line 20
- name: Fontship make
uses: theleagueof/fontship@v0
# Work around fontship v0.10.0 an below trying to force install-dist on first pass
with:
args: make debug all
- name: FontProof
id: fontproof
uses: sile-typesetter/fontproof@v2
with:
args: documentation/waterfalls.sil
- name: SILE
id: sile
run: |
docker run -t -v "/usr/share/texmf/fonts/opentype/public/tex-gyre/:/fonts" ghcr.io/sile-typesetter/sile:v0 -- documentation/sample.sil
# uses: sile-typesetter/sile@v0
# with:
# args: documentation/sample.sil
- name: Fontship package
id: fontship
uses: theleagueof/fontship@v0
with:
args: make dist
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: ${{ steps.fontship.outputs.DISTDIR }}
path: ${{ steps.fontship.outputs.DISTDIR }}.zip
- name: Release
if: startsWith(github.ref, 'refs/tags/v')
uses: softprops/action-gh-release@v1
with:
files: |
${{ steps.fontship.outputs.DISTDIR }}.zip
${{ steps.fontship.outputs.DISTDIR }}.tar.zst
env:
GITHUB_TOKEN: ${{ github.token }}