Fonts for X11 #9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Fonts for X11 | |
on: | |
workflow_dispatch: | |
branches: [ master ] | |
env: | |
VERSION: "091224b" | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
name: Build on ${{ matrix.distro }} ${{ matrix.arch }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: developer library installs | |
run: | | |
sudo apt install xfonts-utils | |
- name: make ttf zip filebinary | |
run: make -f ttf-fonts.gmk all | |
- name: Upload ttf zip file | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ttf-fonts | |
path: ttf-fonts.zip |