Skip to content

Commit 40b1434

Browse files
committed
feat: init
Signed-off-by: Innei <[email protected]>
1 parent 2b4cee8 commit 40b1434

12 files changed

+42
-0
lines changed

.github/workflows/docker.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: Docker Build
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
schedule:
8+
- cron: '0 0 1 * *'
9+
pull_request:
10+
branches: [main]
11+
12+
jobs:
13+
docker:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: Checkout
17+
uses: actions/checkout@v3
18+
19+
- uses: addnab/docker-run-action@v3
20+
with:
21+
image: nerdfonts/patcher:latest
22+
options: --rm -v ./lig:/in -v ./out:/out nerdfonts/patcher -c
23+
- name: Bundle
24+
run: |
25+
zip -r lig.zip out
26+
- name: Update Nightly Release
27+
uses: andelf/nightly-release@main
28+
env:
29+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
30+
with:
31+
tag_name: nightly
32+
name: 'Release $$'
33+
prerelease: false
34+
files: |
35+
lig.zip

build.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/env bash
2+
set -e
3+
4+
docker pull nerdfonts/patcher
5+
docker run --rm -v ./lig:/in -v ./out:/out nerdfonts/patcher -c
6+
7+
zip -r out release.zip

fonts/Operator Mono Book Italic.otf

34.6 KB
Binary file not shown.

fonts/Operator Mono Book Regular.otf

33.5 KB
Binary file not shown.

fonts/OperatorMono-Light.otf

33.3 KB
Binary file not shown.

fonts/OperatorMono-LightItalic.otf

34.9 KB
Binary file not shown.

fonts/OperatorMono-Medium.otf

33.7 KB
Binary file not shown.

fonts/OperatorMono-MediumItalic.otf

34.9 KB
Binary file not shown.

fonts/OperatorMono-XLight.otf

32.9 KB
Binary file not shown.

fonts/OperatorMono-XLightItalic.otf

35.6 KB
Binary file not shown.

lig/OperatorMonoSSmLig-Book.otf

41.3 KB
Binary file not shown.

lig/OperatorMonoSSmLig-BookItalic.otf

42.5 KB
Binary file not shown.

0 commit comments

Comments
 (0)