Merge pull request #286 from buanet/v7.1.0-beta.1

V7.1.0 beta.1
This commit is contained in:
André Germann
2022-10-13 15:14:20 +02:00
committed by GitHub
13 changed files with 216 additions and 172 deletions

View File

@@ -12,7 +12,7 @@ jobs:
uses: actions/checkout@v3
with:
repository: 'buanet/ioBroker.docker'
ref: 'main'
# ref: 'main'
- name: Get and write version and date
id: version

View File

@@ -1,4 +1,4 @@
name: Check js-controller release
name: Check ioBroker versions
on:
schedule:
@@ -15,13 +15,20 @@ jobs:
repository: 'buanet/ioBroker.docker'
token: ${{ secrets.ACTIONS_PAT }}
- name: Fetch js-controller release version
- name: Fetch ioBroker versions
run: |
curl -sL https://repo.iobroker.live/sources-dist.json | \
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)"
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
id: git-check
@@ -32,7 +39,7 @@ jobs:
run: |
git config --global user.name 'buanet'
git config --global user.email 'info@buanet.de'
git commit -am "new js-controller release"
git commit -am "new ioBroker versions"
git push
- name: Trigger build debian latest (buanet)