Auto Upload #10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Auto Upload | |
on: | |
schedule: | |
# 每天凌晨4点执行 (UTC+8) | |
- cron: '0 20 * * *' | |
push: | |
branches: | |
- master # pr合并到master分支时触发 | |
workflow_dispatch: # 允许手动触发 | |
jobs: | |
upload: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
- name: Install dependencies | |
run: npm install | |
- name: Run upload script | |
env: | |
API: ${{ secrets.API }} | |
run: node dist/index.cjs | |
- name: Check for changes | |
id: check_changes | |
run: | | |
if [[ -n $(git status -s result.json) ]]; then | |
echo "changes=true" >> $GITHUB_OUTPUT | |
else | |
echo "changes=false" >> $GITHUB_OUTPUT | |
fi | |
- name: Push result.json | |
if: steps.check_changes.outputs.changes == 'true' | |
run: | | |
git config --global user.name 'github-actions[bot]' | |
git config --global user.email 'github-actions[bot]@users.noreply.github.com' | |
# 克隆目标仓库 | |
git clone https://${{ secrets.PAT }}@github.com/KarinJS/files.git temp_repo | |
# 复制并提交result.json | |
cp result.json temp_repo/ | |
cd temp_repo | |
git add result.json | |
git commit -m "chore: update result.json [skip ci]" | |
git push |