Skip to content

Delete icons/Sparkle.png #84

Delete icons/Sparkle.png

Delete icons/Sparkle.png #84

Workflow file for this run

name: Generate Icons JSON
on:
push:
paths:
- 'icons/**.png'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install jq
run: sudo apt-get install -y jq
- name: Generate icons.json
run: |
ICONS_JSON='{"name": "icons", "description": "适用于Sub-Store的机场图标库", "icons": []}'
for icon in icons/*.png; do
ICON_NAME=$(basename "$icon" .png)
ICON_URL="https://raw.githubusercontent.com/cc63/ICON/main/$icon"
ICONS_JSON=$(echo "$ICONS_JSON" | jq --arg name "$ICON_NAME" --arg url "$ICON_URL" '.icons += [{"name": $name, "url": $url}]')
done
echo "$ICONS_JSON" > icons.json
- name: Commit and push changes
run: |
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git add icons.json
git commit -m "Update icons.json" -a || echo "No changes to commit"
git push