Skip to content

Commit

Permalink
ci(actions): Generate and upload sample sheet as artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
alerque committed Sep 25, 2024
1 parent b3db20b commit 0ee56aa
Showing 1 changed file with 19 additions and 6 deletions.
25 changes: 19 additions & 6 deletions .github/workflows/fontship.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,23 +19,36 @@ jobs:
- name: Fontship make
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: FontProof
id: fontproof
uses: docker://siletypesetter/fontproof:latest
uses: sile-typesetter/fontproof@v2
with:
args: proofs/waterfalls.sil
args: documentation/waterfalls.sil
- name: Upload artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: waterfalls
path: proofs/waterfalls.pdf
path: documentation/waterfalls.pdf
- name: SILE
id: sile
uses: sile-typesetter/sile@v0
with:
args: documentation/sample.sil
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: samples
path: documentation/sample.pdf
- name: Fontship package
id: fontship
uses: theleagueof/fontship@v0
with:
args: make dist
- name: Release
if: startsWith(github.ref, 'refs/tags/v')
uses: softprops/action-gh-release@v1
Expand Down

0 comments on commit 0ee56aa

Please sign in to comment.