Make the pipeline build ALL the formats

This commit is contained in:
Slavfox 2020-02-02 00:52:01 +01:00
parent ca37963baf
commit c432945dc1

View File

@ -20,10 +20,15 @@ jobs:
run: pacman -S --noconfirm fontforge
- name: Build fonts
run: |
fontforge -lang ff -c 'Open("Cozette8/Cozette8.sfd"); Generate("cozette.otb")'
fontforge -lang ff -c 'Open("Cozette8/Cozette8.sfd"); Generate("cozette.ttf")'
fontforge -lang ff -c 'Open("Cozette8/Cozette8.sfd"); Generate("cozette.bdf")'
fontforge -lang ff -c '\
Open("Cozette8/Cozette8.sfd"); \
Generate("cozette.", "otb"); \
Generate("cozette.ttf", "otb"); \
Generate("cozette.dfont","sbit"); \
Generate("cozette.","fnt"); \
Generate("cozette.","bdf"); \
'
- uses: ncipollo/release-action@v1
with:
artifacts: "*.otb, *.ttf, *.bdf"
artifacts: "*.otb, *.ttf, *.bdf, *.dfont, *.fnt"
token: ${{ secrets.GITHUB_TOKEN }}