Bot Updating Templated Files

This commit is contained in:
LinuxServer-CI 2022-02-13 22:20:53 +01:00
parent aa3f0c7880
commit ec8b7aca62
2 changed files with 4 additions and 3 deletions

View File

@ -18,7 +18,7 @@ jobs:
fi
echo "**** External trigger running off of master branch. To disable this trigger, set a Github secret named \"PAUSE_EXTERNAL_TRIGGER_OSCAM_MASTER\". ****"
echo "**** Retrieving external version ****"
EXT_RELEASE=$(docker run --rm alpine:3.9 sh -c 'apk add subversion > /dev/null 2>&1 && svn info --show-item revision https://svn.streamboard.tv/oscam/trunk')
EXT_RELEASE=$(docker run --rm alpine:latest sh -c 'apk add -U --update --no-cache subversion > /dev/null 2>&1 && svn info --show-item revision https://svn.streamboard.tv/oscam/trunk')
if [ -z "${EXT_RELEASE}" ] || [ "${EXT_RELEASE}" == "null" ]; then
echo "**** Can't retrieve external version, exiting ****"
FAILURE_REASON="Can't retrieve external version for oscam branch master"

View File

@ -81,7 +81,7 @@ services:
- PGID=1000
- TZ=Europe/London
volumes:
- <path to data>:/config
- /path/to/data:/config
ports:
- 8888:8888
devices:
@ -98,7 +98,7 @@ docker run -d \
-e PGID=1000 \
-e TZ=Europe/London \
-p 8888:8888 \
-v <path to data>:/config \
-v /path/to/data:/config \
--device /dev/ttyUSB0:/dev/ttyUSB0 \
--restart unless-stopped \
lscr.io/linuxserver/oscam
@ -247,6 +247,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
## Versions
* **19.12.19:** - Rebasing to alpine 3.15.
* **19.12.19:** - Rebasing to alpine 3.11.
* **28.06.19:** - Rebasing to alpine 3.10.
* **29.04.19:** - Add revision check, so pipeline can build new revisions.