chore: set OpenWrt 24.10.5 as default version in GitHub Actions
Changed default OpenWrt version from 25.12.0-rc1 to 24.10.5 to match local-build.sh configuration and ensure stable builds by default. Changes in both workflows: - build-openwrt-packages.yml: default and env fallback - build-secubox-images.yml: default and env fallback - Reordered options to show 24.10.5 first Users can still manually select other versions when triggering workflows. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
ee97a781ee
commit
1684d9d9e7
6
.github/workflows/build-openwrt-packages.yml
vendored
6
.github/workflows/build-openwrt-packages.yml
vendored
@ -33,11 +33,11 @@ on:
|
|||||||
openwrt_version:
|
openwrt_version:
|
||||||
description: 'OpenWrt version'
|
description: 'OpenWrt version'
|
||||||
required: true
|
required: true
|
||||||
default: '25.12.0-rc1'
|
default: '24.10.5'
|
||||||
type: choice
|
type: choice
|
||||||
options:
|
options:
|
||||||
- '25.12.0-rc1'
|
|
||||||
- '24.10.5'
|
- '24.10.5'
|
||||||
|
- '25.12.0-rc1'
|
||||||
- '23.05.5'
|
- '23.05.5'
|
||||||
- '23.05.4'
|
- '23.05.4'
|
||||||
- 'SNAPSHOT'
|
- 'SNAPSHOT'
|
||||||
@ -47,7 +47,7 @@ on:
|
|||||||
default: 'x86-64'
|
default: 'x86-64'
|
||||||
|
|
||||||
env:
|
env:
|
||||||
OPENWRT_VERSION: ${{ github.event.inputs.openwrt_version || '25.12.0-rc1' }}
|
OPENWRT_VERSION: ${{ github.event.inputs.openwrt_version || '24.10.5' }}
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: write
|
contents: write
|
||||||
|
|||||||
8
.github/workflows/build-secubox-images.yml
vendored
8
.github/workflows/build-secubox-images.yml
vendored
@ -18,11 +18,11 @@ on:
|
|||||||
openwrt_version:
|
openwrt_version:
|
||||||
description: 'OpenWrt version'
|
description: 'OpenWrt version'
|
||||||
required: true
|
required: true
|
||||||
default: '25.12.0-rc1'
|
default: '24.10.5'
|
||||||
type: choice
|
type: choice
|
||||||
options:
|
options:
|
||||||
- '25.12.0-rc1'
|
|
||||||
- '24.10.5'
|
- '24.10.5'
|
||||||
|
- '25.12.0-rc1'
|
||||||
- '23.05.5'
|
- '23.05.5'
|
||||||
- '23.05.4'
|
- '23.05.4'
|
||||||
- 'SNAPSHOT'
|
- 'SNAPSHOT'
|
||||||
@ -39,8 +39,8 @@ on:
|
|||||||
- 'v*.*.*-*'
|
- 'v*.*.*-*'
|
||||||
|
|
||||||
env:
|
env:
|
||||||
# Use input if manual trigger, otherwise default to 25.12.0-rc1 for tag triggers
|
# Use input if manual trigger, otherwise default to 24.10.5 for tag triggers
|
||||||
OPENWRT_VERSION: ${{ github.event.inputs.openwrt_version || '25.12.0-rc1' }}
|
OPENWRT_VERSION: ${{ github.event.inputs.openwrt_version || '24.10.5' }}
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: write
|
contents: write
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user