-
-
Notifications
You must be signed in to change notification settings - Fork 77
90 lines (68 loc) · 3.51 KB
/
build.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
name: build
on:
push:
paths-ignore:
- "**.md"
- LICENSE
- .github/FUNDING.yml
branches: [main, dev]
pull_request:
paths-ignore:
- "**.md"
- LICENSE
- .github/FUNDING.yml
branches: [main]
jobs:
build:
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 16
- name: Installing Node Dependencies
run: |
rm -rf node_modules yarn.lock
yarn install --frozen-lockfile
continue-on-error: false
- name: Print cbmp version
run: npx cbmp --version
- name: Rendering Bitmaps
run: yarn render
continue-on-error: false
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: 3.11
- name: Installing PyPi Dependencies
run: python -m pip install --upgrade pip clickgen
continue-on-error: false
- name: Print clickgen Version
run: |
clickgen --version
ctgen --version
- name: Building `Bibata Modern Amber` Cursors
run: ctgen build.toml -n 'Bibata-Modern-Amber' -c 'Yellowish and rounded edge Bibata cursors.' -d 'bitmaps/Bibata-Modern-Amber'
- name: Building `Bibata Original Amber` Cursors
run: ctgen build.toml -n 'Bibata-Original-Amber' -c 'Yellowish and sharp edge Bibata cursors.' -d 'bitmaps/Bibata-Original-Amber'
- name: Building `Bibata Modern Classic` Cursors
run: ctgen build.toml -n 'Bibata-Modern-Classic' -c 'Black and rounded edge Bibata cursors.' -d 'bitmaps/Bibata-Modern-Classic'
- name: Building `Bibata Original Classic` Cursors
run: ctgen build.toml -n 'Bibata-Original-Classic' -c 'Black and sharp edge Bibata cursors.' -d 'bitmaps/Bibata-Original-Classic'
- name: Building `Bibata Modern Ice` Cursors
run: ctgen build.toml -n 'Bibata-Modern-Ice' -c 'White and rounded edge Bibata cursors.' -d 'bitmaps/Bibata-Modern-Ice'
- name: Building `Bibata Original Ice` Cursors
run: ctgen build.toml -n 'Bibata-Original-Ice' -c 'White and sharp edge Bibata cursors.' -d 'bitmaps/Bibata-Original-Ice'
- name: Building `Bibata Modern Amber Right` Cursors
run: ctgen build.right.toml -n 'Bibata-Modern-Amber-Right' -c 'Yellowish and rounded edge right-hand Bibata cursor.' -d 'bitmaps/Bibata-Modern-Amber-Right'
- name: Building `Bibata Original Amber Right` Cursors
run: ctgen build.right.toml -n 'Bibata-Original-Amber-Right' -c 'Yellowish and sharp edge right-hand Bibata cursor.' -d 'bitmaps/Bibata-Original-Amber-Right'
- name: Building `Bibata Modern Classic Right` Cursors
run: ctgen build.right.toml -n 'Bibata-Modern-Classic-Right' -c 'Black and rounded edge right-hand Bibata cursor.' -d 'bitmaps/Bibata-Modern-Classic-Right'
- name: Building `Bibata Original Classic Right` Cursors
run: ctgen build.right.toml -n 'Bibata-Original-Classic-Right' -c 'Black and sharp edge right-hand Bibata cursor.' -d 'bitmaps/Bibata-Original-Classic-Right'
- name: Building `Bibata Modern Ice Right` Cursors
run: ctgen build.right.toml -n 'Bibata-Modern-Ice-Right' -c 'White and rounded edge right-hand Bibata cursor.' -d 'bitmaps/Bibata-Modern-Ice-Right'
- name: Building `Bibata Original Ice Right` Cursors
run: ctgen build.right.toml -n 'Bibata-Original-Ice-Right' -c 'White and sharp edge right-hand Bibata cursor.' -d 'bitmaps/Bibata-Original-Ice-Right'