FIX: 404 when installing dependencies using APT (#98)

I added a step that updates APT repositories before installing dependencies
This commit is contained in:
Alexander Barrios
2020-10-16 03:59:45 -03:00
committed by GitHub
parent 762cf32666
commit 714f63d0d3

View File

@@ -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