1
0
Fork 0
mirror of https://github.com/walkxcode/dashboard-icons.git synced 2024-07-20 17:17:33 +02:00
dashboard-icons/.github/workflows/png-compression.yml
Bjorn Lammers 50c4b5ee2b
🧑‍💻 CI & Config changes (#369)
Co-authored-by: Dashboard Icons Bot <noreply@walkx.fyi>
2023-04-17 00:04:08 +02:00

32 lines
861 B
YAML

name: 🗜️ PNG Compression
on:
schedule:
- cron: '0 0 * * 0'
workflow_dispatch:
jobs:
compress-images:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install Dependencies
run: |
sudo apt-get update
sudo apt-get install -y zopfli
- name: Compress PNGs
run: |
echo "🖼️ Compressing PNGs..."
find png/ -iname "*.png" -print0 | xargs -0 -P 4 -I{} sh -c 'echo "Compressing {}"; zopflipng -y {} {}' || true
- name: Load to GitHub
run: |-
git diff
git config --global user.email "noreply@walkx.fyi"
git config --global user.name "Dashboard Icons Bot"
git add -A
git commit -m ":clamp: Compresses PNGs" || exit 0
git push