From d96205e297f537297c065466c23258e6386fae16 Mon Sep 17 00:00:00 2001 From: Caleb Maclennan Date: Wed, 25 Sep 2024 13:18:13 +0300 Subject: [PATCH] ci(actions): Generate and upload sample sheet as artifact --- .github/workflows/fontship.yml | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/.github/workflows/fontship.yml b/.github/workflows/fontship.yml index 44470159..a7f45a65 100644 --- a/.github/workflows/fontship.yml +++ b/.github/workflows/fontship.yml @@ -17,6 +17,18 @@ jobs: run: | git fetch --prune --tags ||: - name: Fontship make + uses: theleagueof/fontship@v0 + - name: FontProof + id: fontproof + uses: sile-typesetter/fontproof@v2 + with: + args: documentation/waterfalls.sil + - name: SILE + id: sile + uses: sile-typesetter/sile@v0 + with: + args: documentation/sample.sil + - name: Fontship package id: fontship uses: theleagueof/fontship@v0 with: @@ -26,16 +38,6 @@ jobs: with: name: ${{ steps.fontship.outputs.DISTDIR }} path: ${{ steps.fontship.outputs.DISTDIR }}.zip - - name: FontProof - id: fontproof - uses: docker://siletypesetter/fontproof:latest - with: - args: proofs/waterfalls.sil - - name: Upload artifacts - uses: actions/upload-artifact@v2 - with: - name: waterfalls - path: proofs/waterfalls.pdf - name: Release if: startsWith(github.ref, 'refs/tags/v') uses: softprops/action-gh-release@v1