Skip to content
Snippets Groups Projects
Commit 1761e974 authored by Nicolas Lenz's avatar Nicolas Lenz :snowflake:
Browse files

Changes for font-retriever

parent f5bd1564
No related branches found
No related tags found
No related merge requests found
fonts: fonts:
stage: build stage: build
image: alpine image: alpine
variables:
GIT_SUBMODULE_STRATEGY: recursive
script: script:
- apk add --no-cache tar unzip xz wget - apk add --no-cache tar unzip xz wget
- ./get-fonts.sh - font-retriever/get-fonts.sh
artifacts: artifacts:
paths: paths:
- fonts - fonts
......
#!/usr/bin/env sh
wget -O raleway.tar.xz \
https://github.com/theleagueof/raleway/releases/download/4.101/Raleway-4.101.tar.xz
wget -O zilla-slab.zip \
https://github.com/mozilla/zilla-slab/releases/download/v1.002/Zilla-Slab-Fonts-v1.002.zip
wget -O iosevka-funke.tar.gz \
https://config.pages.eisfunke.com/iosevka/iosevka-funke.tar.gz
wget -O bungee.zip \
https://github.com/djrrb/Bungee/releases/download/1.1.0/Bungee-fonts.zip
mkdir font-raleway && tar -C font-raleway -xf raleway.tar.xz
unzip -d font-zilla-slab zilla-slab.zip
mkdir font-iosevka-funke && tar -C font-iosevka-funke -xf iosevka-funke.tar.gz
unzip -d font-bungee bungee.zip
mkdir fonts
mv font-iosevka-funke/iosevka-funke/ttf/*.ttf fonts
mv font-zilla-slab/zilla-slab/otf/*.otf fonts
mv font-raleway/Raleway-4.101/static/OTF/*.otf fonts
mv font-bungee/fonts/Bungee_Desktop/*/*.otf fonts
rm raleway.tar.xz zilla-slab.zip iosevka-funke.tar.gz bungee.zip
rm -r font-*
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment