Skip to content
This repository was archived by the owner on Jul 24, 2024. It is now read-only.

Commit 2349e17

Browse files
authored
Merge pull request #15 from linuxserver-labs/actions-v5
2 parents 8c37888 + b1e3b56 commit 2349e17

File tree

4 files changed

+28
-9
lines changed

4 files changed

+28
-9
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Check for base image updates
2+
3+
on:
4+
workflow_dispatch:
5+
schedule:
6+
- cron: '0 0 * * 0'
7+
8+
jobs:
9+
call-workflow:
10+
uses: linuxserver-labs/docker-actions/.github/workflows/check-baseimage-update.yml@v5
11+
with:
12+
repo_owner: ${{ github.repository_owner }}
13+
app_name: "omada-controller"
14+
baseimage: "ubuntu"
15+
basebranch: "focal"
16+
secrets:
17+
repo_release_token: ${{ secrets.repo_release_token }}

.github/workflows/call-build-image.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,10 @@ on:
66

77
jobs:
88
call-workflow:
9-
uses: linuxserver-labs/docker-actions/.github/workflows/build-image.yml@v4
9+
uses: linuxserver-labs/docker-actions/.github/workflows/build-image.yml@v5
1010
with:
1111
repo_owner: ${{ github.repository_owner }}
1212
app_name: "omada-controller"
13+
release_type: "script"
1314
secrets:
14-
scarf_token: ${{ secrets.SCARF_TOKEN }}
15+
scarf_token: ${{ secrets.SCARF_TOKEN }}

.github/workflows/call-check-and-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
call-workflow:
10-
uses: linuxserver-labs/docker-actions/.github/workflows/check-and-release.yml@v4
10+
uses: linuxserver-labs/docker-actions/.github/workflows/check-and-release.yml@v5
1111
with:
1212
repo_owner: ${{ github.repository_owner }}
1313
app_name: "omada-controller"

README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,11 @@ Simply pulling `lscr.io/linuxserver-labs/omada-controller` should retrieve the c
4848

4949
The architectures supported by this image are:
5050

51-
| Architecture | Tag |
52-
| :----: | --- |
53-
| x86-64 | latest |
54-
| arm64 | latest |
51+
| Architecture | Available | Tag |
52+
| :----: | :----: | ---- |
53+
| x86-64 || latest |
54+
| arm64 || latest |
55+
| armhf || |
5556

5657
## Application Setup
5758

@@ -72,7 +73,7 @@ Here are some example snippets to help you get started creating a container.
7273
version: "2.1"
7374
services:
7475
omada-controller:
75-
image: lscr.io/linuxserver-labs/omada-controller
76+
image: lscr.io/linuxserver-labs/omada-controller:latest
7677
container_name: omada-controller
7778
environment:
7879
- PUID=1000
@@ -108,7 +109,7 @@ docker run -d \
108109
-p 29814:29814 \
109110
-v /path/to/data:/config \
110111
--restart unless-stopped \
111-
lscr.io/linuxserver-labs/omada-controller
112+
lscr.io/linuxserver-labs/omada-controller:latest
112113
```
113114

114115
## Parameters

0 commit comments

Comments
 (0)