mirror of
https://github.com/slavfox/Cozette.git
synced 2026-03-11 08:54:33 +00:00
28 lines
706 B
YAML
28 lines
706 B
YAML
name: Build fonts
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- '*'
|
|
|
|
jobs:
|
|
build:
|
|
name: Make release
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: archlinux/base
|
|
steps:
|
|
- name: Install dependencies
|
|
run: |
|
|
pacman -Sy --noconfirm base git tar which python python-pipenv
|
|
- name: Install fontforge
|
|
run: pacman -S --noconfirm fontforge
|
|
- uses: actions/checkout@v2
|
|
- name: Build fonts
|
|
run: |
|
|
pipenv install; pipenv run python build.py fonts
|
|
- uses: ncipollo/release-action@v1
|
|
with:
|
|
artifacts: "build/*"
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
body: "See [CHANGELOG.md](https://github.com/slavfox/Cozette/blob/master/CHANGELOG.md)"
|