File tree Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -225,6 +225,21 @@ jobs:
225
225
}
226
226
env :
227
227
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
228
+
229
+ - name : Update Release Hash
230
+ run : |
231
+ python scripts/update_release.py
232
+ git config user.name "github-actions[bot]"
233
+ git config user.email "github-actions[bot]@users.noreply.github.com"
234
+ git add _config.yml
235
+ git diff --cached --quiet || git commit -m "Update release hash"
236
+ git push || {
237
+ echo "Push failed, attempting pull and merge"
238
+ git pull --rebase
239
+ git push
240
+ }
241
+ env :
242
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
228
243
229
244
- name : Setup Pages
230
245
uses : actions/configure-pages@v5
Original file line number Diff line number Diff line change @@ -49,4 +49,4 @@ ssl_certificate: false
49
49
50
50
timezone : Asia/Shanghai
51
51
52
- release : 33e95f52f35ec7a481508c3ebfab4b02cf4217e1
52
+ release : bf78a5be52b66f8fb7d2877e7f78e5bb8fc115a8
You can’t perform that action at this time.
0 commit comments