mirror of
https://github.com/AdisonCavani/distro-grub-themes.git
synced 2025-06-06 07:12:33 +02:00
Add workflows and font
This commit is contained in:
parent
ead2eac73e
commit
de90ed1df6
5 changed files with 30 additions and 0 deletions
30
.github/workflows/update-content.yml
vendored
Normal file
30
.github/workflows/update-content.yml
vendored
Normal file
|
@ -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
|
BIN
font/terminus-12.pf2
Normal file
BIN
font/terminus-12.pf2
Normal file
Binary file not shown.
BIN
font/terminus-14.pf2
Normal file
BIN
font/terminus-14.pf2
Normal file
Binary file not shown.
BIN
font/terminus-16.pf2
Normal file
BIN
font/terminus-16.pf2
Normal file
Binary file not shown.
BIN
font/terminus-18.pf2
Normal file
BIN
font/terminus-18.pf2
Normal file
Binary file not shown.
Loading…
Add table
Reference in a new issue