mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2025-02-03 06:27:57 +08:00
79 lines
2.3 KiB
YAML
79 lines
2.3 KiB
YAML
name: Process Apps and Commit Changes
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- custom
|
|
pull_request:
|
|
branches:
|
|
- custom
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
process:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Python
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.10'
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install pyyaml
|
|
|
|
- name: Run processing script
|
|
run: python process-apps.py
|
|
|
|
- name: Verify generated directories
|
|
run: |
|
|
ls -R appstore || echo "appstore not created"
|
|
ls -R dockge || echo "dockge not created"
|
|
|
|
- name: Configure Git
|
|
run: |
|
|
git config --global user.name "${{ github.actor }}"
|
|
git config --global user.email "${{ github.actor }}@users.noreply.github.com"
|
|
|
|
- name: Commit and push changes
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
run: |
|
|
git fetch origin custom
|
|
|
|
git add .
|
|
git diff --cached --quiet || git commit -m "Processed apps directory via GitHub Actions"
|
|
|
|
git rebase origin/custom || { echo "Rebase failed, trying to resolve"; git rebase --abort; git pull --rebase origin custom; }
|
|
|
|
git push origin custom
|
|
|
|
- name: Clone DPanel repository
|
|
run: |
|
|
git clone https://github.com/QYG2297248353/appstore-dpanel.git target-repo
|
|
|
|
- name: Copy appstore to DPanel repository
|
|
run: |
|
|
if [ -d "target-repo/apps" ]; then
|
|
rm -rf target-repo/apps
|
|
fi
|
|
mkdir -p target-repo/apps
|
|
rsync -a appstore/ target-repo/apps/
|
|
|
|
- name: Commit and push to DPanel repository
|
|
working-directory: target-repo
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUBTOKEN }}
|
|
run: |
|
|
git config --global user.name "${{ github.actor }}"
|
|
git config --global user.email "${{ github.actor }}@users.noreply.github.com"
|
|
|
|
git add .
|
|
git diff --cached --quiet || git commit -m "Synced apps from source repository via GitHub Actions"
|
|
|
|
git push https://x-access-token:${{ secrets.GITHUBTOKEN }}@github.com/QYG2297248353/appstore-dpanel.git master
|