mirror of
https://github.com/slavfox/Cozette.git
synced 2026-03-11 08:54:33 +00:00
Make the pipeline build ALL the formats
This commit is contained in:
parent
ca37963baf
commit
c432945dc1
1 changed files with 9 additions and 4 deletions
13
.github/workflows/main.yml
vendored
13
.github/workflows/main.yml
vendored
|
|
@ -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 }}
|
||||
|
|
|
|||
Loading…
Reference in a new issue