mirror of
https://github.com/RROrg/rr.git
synced 2025-08-21 12:06:57 +08:00
Compare commits
5 Commits
a3a736e64b
...
00dd56679c
Author | SHA1 | Date | |
---|---|---|---|
|
00dd56679c | ||
|
4cb2e996e9 | ||
|
ee4daf15f1 | ||
|
0176562594 | ||
|
a7a7e0e116 |
9
.github/workflows/data.yml
vendored
9
.github/workflows/data.yml
vendored
@ -7,6 +7,10 @@
|
||||
|
||||
name: Data
|
||||
on:
|
||||
release:
|
||||
types:
|
||||
- created
|
||||
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
push:
|
||||
@ -68,7 +72,7 @@ jobs:
|
||||
python scripts/func.py getmodules -w "rr/ws" -j "docs/modules.json" -x "docs/modules.xlsx"
|
||||
|
||||
- name: Upload to Artifacts
|
||||
if: success() && inputs.push == false
|
||||
if: success()
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: addons
|
||||
@ -78,9 +82,10 @@ jobs:
|
||||
retention-days: 5
|
||||
|
||||
- name: Check and Push
|
||||
if: success() && inputs.push == true
|
||||
if: success() && (inputs.push == true || github.event.action == 'created')
|
||||
run: |
|
||||
echo "Git push ..."
|
||||
git checkout main
|
||||
git pull
|
||||
status=$(git status -s | grep -E "docs" | awk '{printf " %s", $2}')
|
||||
if [ -n "${status}" ]; then
|
||||
|
BIN
docs/addons.xlsx
BIN
docs/addons.xlsx
Binary file not shown.
BIN
docs/models.xlsx
BIN
docs/models.xlsx
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@ -201,6 +201,7 @@ else
|
||||
COUNT=$((${COUNT} + 1))
|
||||
echo -n "."
|
||||
sleep 1
|
||||
/etc/init.d/S41dhcpcd restart >/dev/null 2>&1 || true
|
||||
done
|
||||
echo "$(TEXT "Waiting IP.")"
|
||||
for N in ${ETHX}; do
|
||||
|
@ -1,4 +1,4 @@
|
||||
RR_VERSION="24.4.6"
|
||||
RR_VERSION="24.4.7"
|
||||
RR_TITLE="RR v${RR_VERSION}"
|
||||
|
||||
# Define paths
|
||||
|
@ -146,6 +146,7 @@ while [ ${COUNT} -lt 30 ]; do
|
||||
COUNT=$((${COUNT} + 1))
|
||||
echo -n "."
|
||||
sleep 1
|
||||
/etc/init.d/S41dhcpcd restart >/dev/null 2>&1 || true
|
||||
done
|
||||
echo "$(TEXT "Waiting IP.")"
|
||||
for N in ${ETHX}; do
|
||||
|
@ -1 +1 @@
|
||||
24.4.6
|
||||
24.4.7
|
||||
|
Loading…
x
Reference in New Issue
Block a user