mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-28 16:16:17 +01:00
62 lines
1.6 KiB
YAML
62 lines
1.6 KiB
YAML
name: Build Lucide
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
|
|
jobs:
|
|
Build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
|
|
- name: Clone 'Lucide'
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Update repos
|
|
run: sudo apt-get update
|
|
|
|
- name: Install FontForge
|
|
run: sudo apt-get install zlib1g-dev fontforge
|
|
|
|
- name: Clone sfnt2woff-zopfli repo
|
|
run: git clone https://github.com/bramstein/sfnt2woff-zopfli.git sfnt2woff-zopfli
|
|
|
|
- name: Install and move sfnt2woff-zopfli
|
|
run: |
|
|
cd sfnt2woff-zopfli
|
|
make
|
|
sudo mv sfnt2woff-zopfli /usr/local/bin/sfnt2woff
|
|
|
|
- name: Clone woff2
|
|
run: git clone --recursive https://github.com/google/woff2.git
|
|
|
|
- name: Install woff2
|
|
run: |
|
|
cd woff2
|
|
sudo make clean all
|
|
sudo mv woff2_compress /usr/local/bin/ && sudo mv woff2_decompress /usr/local/bin/
|
|
|
|
- name: Install Font Custom dependency
|
|
run: sudo gem install fontcustom
|
|
|
|
- name: Install "outline-stroke"
|
|
run: sudo yarn add svg-outline-stroke -W
|
|
|
|
- name: "Outline SVG"
|
|
run: mkdir converted_icons && node scripts/outline_svg.js
|
|
|
|
- name: Build 'Lucide'
|
|
run: echo "Building Lucide font" && fontcustom compile ./converted_icons -h -n Lucide -o build -F
|
|
|
|
- name: Zip 'Lucide'
|
|
run: zip -r Lucide.zip build
|
|
|
|
- name: 'Upload to Artifacts'
|
|
uses: actions/upload-artifact@v1.0.0
|
|
with:
|
|
name: Lucide
|
|
path: build
|