forked from satbyy/go-noto-universal
-
Notifications
You must be signed in to change notification settings - Fork 0
62 lines (53 loc) · 1.81 KB
/
eLab_fonts.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
name: eLabFTW fonts
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events
push:
branches: [ master, elabftw ]
pull_request:
branches: [ master ]
schedule:
# Runs "At 12:00 every Sunday"
- cron: '0 12 * * Sun'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: Install fontforge
run: sudo apt-get update && sudo apt-get install -y fontforge
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
# Checkout pull request HEAD commit instead of merge commit
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Setup Python version
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Create eLabFTW fonts
run: |
python -m venv venv_fonty
source venv_fonty/bin/activate
./scripts/eLab_fonts.sh
deactivate
- name: Collect font statistics
run: |
source venv_fonty/bin/activate
source scripts/helper.sh
collect_font_statistics > stats/eLabFTW_fonts.tsv
deactivate
- name: Upload generated fonts
uses: actions/upload-artifact@v4
with:
name: eLabFTWNotoFonts.zip
path: |
fonts/*.ttf
stats/*.tsv
LICENSE.txt
if-no-files-found: error