mirror of
https://github.com/doocs/md.git
synced 2024-11-24 19:10:34 +08:00
35 lines
815 B
YAML
35 lines
815 B
YAML
name: Compress
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
paths:
|
|
- "**.jpg"
|
|
- "**.jpeg"
|
|
- "**.png"
|
|
- "**.webp"
|
|
|
|
jobs:
|
|
compress:
|
|
runs-on: ubuntu-latest
|
|
if: github.repository == 'doocs/md'
|
|
steps:
|
|
- name: Checkout Branch
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Compress Images
|
|
uses: calibreapp/image-actions@master
|
|
with:
|
|
githubToken: ${{ secrets.GITHUB_TOKEN }}
|
|
compressOnly: true
|
|
|
|
- name: Commit Files
|
|
run: |
|
|
git config --local user.email "action@github.com"
|
|
git config --local user.name "GitHub Action"
|
|
git commit -m "[Automated] Optimize images" -a
|
|
- name: Push Changes
|
|
uses: ad-m/github-push-action@master
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|