分发 第三方应用商店

Signed-off-by: Meng Sen <qyg2297248353@gmail.com>
This commit is contained in:
新疆萌森软件开发工作室 2024-11-28 17:02:57 +08:00
parent 953b246b34
commit cf0ad6f3aa

View File

@ -32,16 +32,16 @@ jobs:
ls -R dockge || echo "dockge not created"
- name: Configure Git
if: steps.check_changes.outcome != 'success'
run: |
git config --global user.name "${{ github.actor }}"
git config --global user.email "${{ github.actor }}@users.noreply.github.com"
- name: Commit and push changes
if: steps.check_changes.outcome != 'success'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git fetch origin appstore
git rebase origin/appstore
git add appstore dockge || echo "No changes to add"
git commit -m "Processed apps directory via GitHub Actions" || echo "Nothing to commit"
git push origin main
git diff --cached --quiet && echo "No changes to commit" || git commit -m "Processed apps directory via GitHub Actions"
git push origin appstore