Skip to content

Commit

Permalink
807b341c3c97d8c93b5977b07f71c957eed115ff
Browse files Browse the repository at this point in the history
  • Loading branch information
wjz304 committed Mar 28, 2023
1 parent 4728fa1 commit 3c53e3c
Show file tree
Hide file tree
Showing 42 changed files with 14,281 additions and 1 deletion.
13 changes: 13 additions & 0 deletions .github/ISSUE_TEMPLATE/custom.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
name: Custom
about: Describe this issue template's purpose here.
title: 'Custom XXX'
labels: ''
assignees: ''

---

{
"info1":"由于当前型号和版本均为动态选项, 请从WEB端进行参数选择.",
"info2":"整个编译过程一般在5分钟左右(受驱动数量和版本影响), 如长时间未收到[bot]的回复, 请reopen或者重新创建Issue."
}
38 changes: 38 additions & 0 deletions .github/workflows/cdn.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
#
# Copyright (C) 2022 Ing <https://github.com/wjz304>
#
# This is free software, licensed under the MIT License.
# See /LICENSE for more information.
#


name: Refresh CDN
on:
push:
workflow_dispatch:

jobs:
refresh:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@main

- name: Refresh CDN
run : |
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git config --global user.name "github-actions[bot]"
sudo timedatectl set-timezone "Asia/Shanghai"
curl -L "https://purge.jsdelivr.net/gh/wjz304/Redpill_CustomBuild@main/parameter.json"
curl -L "https://purge.jsdelivr.net/gh/wjz304/Redpill_CustomBuild@main/loads.json"
curl -L "https://purge.jsdelivr.net/gh/wjz304/Redpill_CustomBuild@main/exts.json"
curl -L "https://purge.jsdelivr.net/gh/wjz304/Redpill_CustomBuild@main/lkms.json"
curl -L "https://purge.jsdelivr.net/gh/wjz304/Redpill_CustomBuild@main/tips.md"
curl -I "https://cdn.statically.io/gh/wjz304/Redpill_CustomBuild/main/parameter.json"
curl -I "https://cdn.statically.io/gh/wjz304/Redpill_CustomBuild/main/loads.json"
curl -I "https://cdn.statically.io/gh/wjz304/Redpill_CustomBuild/main/exts.json"
curl -I "https://cdn.statically.io/gh/wjz304/Redpill_CustomBuild/main/lkms.json"
curl -I "https://cdn.statically.io/gh/wjz304/Redpill_CustomBuild/main/tips.md"
Loading

0 comments on commit 3c53e3c

Please sign in to comment.