We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a750e2 commit c55e282Copy full SHA for c55e282
.github/workflows/fetch_releases.yml
@@ -13,8 +13,10 @@ jobs:
13
- name: Checkout repo
14
uses: actions/checkout@v3
15
16
- - name: Fetch release data
+ - name: git fetch pull 和 curl GitHub API
17
run: |
18
+ git fetch
19
+ git pull
20
curl -s https://api.github.com/repos/ttqftech/FFBox/releases > public/releases.json
21
cp public/releases.json docs/releases.json
22
@@ -24,8 +26,6 @@ jobs:
24
26
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
25
27
git add docs/releases.json
28
git commit -m "Update releases.json [auto]" || echo "No changes to commit"
- git pull --rebase
- git checkout docs/releases.json # 保留本地 D 的内容
29
- git add <冲突文件>
30
- git rebase --continue
31
git push
+
+如果我改成这样,存在问题吗?uses 后面接了个 run
0 commit comments