mirror of
https://github.com/Karaka-Management/User-Guide.git
synced 2026-01-10 20:08:41 +00:00
24 lines
467 B
YAML
Executable File
24 lines
467 B
YAML
Executable File
name: Compress images
|
|
on:
|
|
push:
|
|
paths:
|
|
- '**.jpg'
|
|
- '**.png'
|
|
- '**.webp'
|
|
pull_request:
|
|
paths:
|
|
- '**.jpg'
|
|
- '**.png'
|
|
- '**.webp'
|
|
jobs:
|
|
build:
|
|
name: calibreapp/image-actions
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Repo
|
|
uses: actions/checkout@main
|
|
|
|
- name: Compress Images
|
|
uses: calibreapp/image-actions@main
|
|
with:
|
|
githubToken: ${{ secrets.GITHUB_TOKEN }} |