-
Notifications
You must be signed in to change notification settings - Fork 85
60 lines (53 loc) · 1.87 KB
/
update-assets.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
name: Update assets
on:
push:
branches: [ master ]
paths:
- icons.tsv
- vectors/*
workflow_dispatch:
jobs:
update_assets:
runs-on: ubuntu-latest
steps:
- name: Fetch repo
uses: actions/checkout@v4
- name: Fetch dependencies
run: |
sudo apt update -y -q
sudo apt install jq nodejs wkhtmltopdf -y -q
npm install nunjucks
# Ubuntu 20.04 has only fontforge release 2020, but there are some vital bugfixes in the 2023 release
# This can be replaced with the ordinary apt package when Ubuntu updates, probably with 23.10
# On the other hand ... why not be on the latest release always?
- name: Fetch FontForge
run: |
sudo apt install fuse -y -q
curl -L "https://github.com/fontforge/fontforge/releases/download/20230101/FontForge-2023-01-01-a1dad3e-x86_64.AppImage" \
--output fontforge
chmod u+x fontforge
echo Try appimage
./fontforge --version
export PATH=`pwd`:$PATH
echo "PATH=$PATH" >> $GITHUB_ENV
echo Try appimage with path
fontforge --version
- name: Create the assets
run: |
make
- name: Commit preview image back to repo
uses: EndBug/add-and-commit@v9
with:
add: 'assets/readme-header.png'
message: "[ci] Update preview image"
committer_name: GitHub Actions
committer_email: 41898282+github-actions[bot]@users.noreply.github.com
- name: Deploy assets to gh-pages
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: assets
target-folder: assets
commit-message: "[ci] Update assets"
git-config-name: GitHub Actions
git-config-email: 41898282+github-actions[bot]@users.noreply.github.com
clean: false