Skip to content

Commit 53d22dc

Browse files
committed
minor
deploy-server if repo owner is libremesh buildroot select profile before packages fix links in navbar/news
1 parent 40f891d commit 53d22dc

3 files changed

Lines changed: 11 additions & 10 deletions

File tree

.github/workflows/deploy-server.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ concurrency:
2626
jobs:
2727
# Build job
2828
build_deploy:
29+
if: github.repository_owner == 'libremesh'
2930
runs-on: ubuntu-latest
3031
steps:
3132
- name: Checkout

docs/.vitepress/config.mts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ function nav(): DefaultTheme.NavItem[] {
7272
{ text: 'Reference', link: '/reference/configuration' },
7373
{ text: 'News',
7474
items: [
75-
{ text: 'v2024.1', link: '/news/2023-10-07' },
76-
{ text: 'v2020.4', link: '/news/2025-05-04' },
75+
{ text: 'v2024.1', link: '/news/2025-05-04' },
76+
{ text: 'v2020.4', link: '/news/2020-12-15' },
7777
{ text: 'Latest Articles', link: '/news/' },
7878
{ text: 'Changelog', link: 'changelog'},
7979
{ text: 'Issues', link: 'https://github.com/libremesh/lime-packages/issues'},

docs/build/buildroot.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -233,6 +233,14 @@ EOF
233233
make defconfig
234234
```
235235

236+
#### Router profile
237+
Selects the router profile based on the compatible string:
238+
239+
```
240+
echo "CONFIG_TARGET_DEVICE_ath79_generic_DEVICE_librerouter_librerouter-v1=y" >> .config
241+
make defconfig
242+
```
243+
236244
#### LibreMesh packages
237245
```sh
238246
cat << EOF >> .config
@@ -248,14 +256,6 @@ EOF
248256
make defconfig
249257
```
250258

251-
#### Router profile
252-
Selects the router profile based on the compatible string:
253-
254-
```
255-
echo "CONFIG_TARGET_DEVICE_ath79_generic_DEVICE_librerouter_librerouter-v1=y" >> .config
256-
make defconfig
257-
```
258-
259259
## Build Libremesh
260260

261261
Finally, compile the images

0 commit comments

Comments
 (0)