From 714f63d0d33ff0170c8c8fdf074a9f05421d28a4 Mon Sep 17 00:00:00 2001 From: Alexander Barrios Date: Fri, 16 Oct 2020 03:59:45 -0300 Subject: [PATCH] FIX: 404 when installing dependencies using APT (#98) I added a step that updates APT repositories before installing dependencies --- .github/workflows/font.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/font.yml b/.github/workflows/font.yml index db19bc8..5b46e55 100644 --- a/.github/workflows/font.yml +++ b/.github/workflows/font.yml @@ -8,8 +8,12 @@ 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 woff2 @@ -17,6 +21,7 @@ jobs: - 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 @@ -26,6 +31,7 @@ jobs: - name: Clone woff2 run: git clone --recursive https://github.com/google/woff2.git + - name: Install woff2 run: | cd woff2 @@ -36,10 +42,10 @@ jobs: run: sudo gem install fontcustom - name: Build 'Lucide' - run: echo "Building Featherity font" && fontcustom compile ./icons -h -n Featherity -o build -F + run: echo "Building Lucide font" && fontcustom compile ./icons -h -n Lucide -o build -F - name: Zip 'Lucide' - run: zip -r Featherity.zip build + run: zip -r Lucide.zip build - name: 'Upload to Artifacts' uses: actions/upload-artifact@v1.0.0