diff --git a/.github/workflows/update-content.yml b/.github/workflows/update-content.yml new file mode 100644 index 0000000..b5ec89e --- /dev/null +++ b/.github/workflows/update-content.yml @@ -0,0 +1,30 @@ +name: Update changes on commit + +on: + push: + branches: [ actions ] + paths: + - 'assets/icons' + - 'customize/**' + - 'font' + +jobs: + deploy: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@master + - name: 🌵 Update icons + run: | + for dest in customize/* ; do cp -rv assets/icons "$dest"; done + - name: 🦬 Update fonts + run: | + for dest in customize/* ; do cp -rva font/. "$dest"; done + - name: 🔥 Commit changes + run: | + git config user.name github-actions + git config user.email github-actions@github.com + git fetch + git add . + git commit -m "🤖 Update files" + git push diff --git a/font/terminus-12.pf2 b/font/terminus-12.pf2 new file mode 100644 index 0000000..6092035 Binary files /dev/null and b/font/terminus-12.pf2 differ diff --git a/font/terminus-14.pf2 b/font/terminus-14.pf2 new file mode 100644 index 0000000..8ab8bd1 Binary files /dev/null and b/font/terminus-14.pf2 differ diff --git a/font/terminus-16.pf2 b/font/terminus-16.pf2 new file mode 100644 index 0000000..6e6b25d Binary files /dev/null and b/font/terminus-16.pf2 differ diff --git a/font/terminus-18.pf2 b/font/terminus-18.pf2 new file mode 100644 index 0000000..129cef1 Binary files /dev/null and b/font/terminus-18.pf2 differ