enhance build process

This commit is contained in:
buanet
2022-10-06 11:30:45 +02:00
parent 3e40d2acd1
commit d13c18f397
5 changed files with 12 additions and 4 deletions

0
.github/dependencies/.admin-version vendored Normal file
View File

View File

View File

View File

@@ -1,4 +1,4 @@
name: Check js-controller release name: Check ioBroker versions
on: on:
schedule: schedule:
@@ -15,13 +15,20 @@ jobs:
repository: 'buanet/ioBroker.docker' repository: 'buanet/ioBroker.docker'
token: ${{ secrets.ACTIONS_PAT }} token: ${{ secrets.ACTIONS_PAT }}
- name: Fetch js-controller release version - name: Fetch ioBroker versions
run: | run: |
curl -sL https://repo.iobroker.live/sources-dist.json | \ curl -sL https://repo.iobroker.live/sources-dist.json | \
jq -r '."js-controller".version' > .github/dependencies/.js-controller-version jq -r '."js-controller".version' > .github/dependencies/.js-controller-version
# curl -sL https://api.github.com/repos/ioBroker/ioBroker.js-controller/releases/latest | \
# jq -r ".tag_name" > .github/dependencies/.js-controller-version
echo "[LOG] Fetched js-controller version is $(cat .github/dependencies/.js-controller-version)" echo "[LOG] Fetched js-controller version is $(cat .github/dependencies/.js-controller-version)"
curl -sL https://repo.iobroker.live/sources-dist.json | \
jq -r '."admin".version' > .github/dependencies/.admin-version
echo "[LOG] Fetched admin version is $(cat .github/dependencies/.admin-version)"
curl -sL https://repo.iobroker.live/sources-dist.json | \
jq -r '."backitup".version' > .github/dependencies/.backitup-version
echo "[LOG] Fetched backitup version is $(cat .github/dependencies/.backitup-version)"
curl -sL https://repo.iobroker.live/sources-dist.json | \
jq -r '."discovery".version' > .github/dependencies/.discovery-version
echo "[LOG] Fetched discovery version is $(cat .github/dependencies/.discovery-version)"
- name: Check for modified files - name: Check for modified files
id: git-check id: git-check

View File

@@ -1,6 +1,7 @@
## Changelog ## Changelog
### v7.1.0-beta.1 (coming soon) ### v7.1.0-beta.1 (coming soon)
* enhance build process
* add restart option to maintenance script * add restart option to maintenance script
* enhance logging * enhance logging
* test strict mode for iobroker-startup.sh * test strict mode for iobroker-startup.sh