-
Notifications
You must be signed in to change notification settings - Fork 86
45 lines (39 loc) · 1.16 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
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 python3-fontforge jq nodejs wkhtmltopdf -y -q
npm install nunjucks
- name: Create the assets
run: |
make
- name: Commit preview image back to repo
uses: EndBug/add-and-commit@v9
with:
fetch: false
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