Compare commits

..

5 Commits

Author SHA1 Message Date
github-actions[bot]
00dd56679c update 2024-04-25 13:42:58 2024-04-25 13:42:58 +08:00
Ing
4cb2e996e9 fix event created branch 2024-04-25 13:39:56 +08:00
github-actions[bot]
ee4daf15f1 update 2024-04-25 05:17:46 2024-04-25 05:17:46 +00:00
Ing
0176562594 add S41dhcpcd restart 2024-04-25 11:32:16 +08:00
Ing
a7a7e0e116 add on release get data 2024-04-25 08:56:31 +08:00
10 changed files with 636 additions and 109 deletions

View File

@ -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

View File

@ -1 +1 @@
24.4.6
24.4.7

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.

View File

@ -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

View File

@ -1,4 +1,4 @@
RR_VERSION="24.4.6"
RR_VERSION="24.4.7"
RR_TITLE="RR v${RR_VERSION}"
# Define paths

View File

@ -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

View File

@ -1 +1 @@
24.4.6
24.4.7