mirror of
https://github.com/buanet/ioBroker.docker.git
synced 2025-12-24 13:45:32 +02:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 2.4.0 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2.4.0...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
53 lines
1.9 KiB
YAML
53 lines
1.9 KiB
YAML
name: Check js-controller release
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '42 23 * * *'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
check-and-trigger:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repo
|
|
uses: actions/checkout@v3
|
|
with:
|
|
repository: 'buanet/ioBroker.docker'
|
|
token: ${{ secrets.ACTIONS_PAT }}
|
|
|
|
- name: Fetch js-controller release version
|
|
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)"
|
|
|
|
- name: Check for modified files
|
|
id: git-check
|
|
run: echo ::set-output name=modified::$([ -z "`git status --porcelain`" ] && echo "false" || echo "true")
|
|
|
|
- name: Commit latest release version
|
|
if: steps.git-check.outputs.modified == 'true'
|
|
run: |
|
|
git config --global user.name 'buanet'
|
|
git config --global user.email 'info@buanet.de'
|
|
git commit -am "new js-controller release"
|
|
git push
|
|
|
|
- name: Trigger build debian latest (buanet)
|
|
if: steps.git-check.outputs.modified == 'true'
|
|
uses: benc-uk/workflow-dispatch@v1.1
|
|
with:
|
|
workflow: Build debian latest (buanet)
|
|
repo: buanet/ioBroker.docker
|
|
token: ${{ secrets.ACTIONS_PAT }}
|
|
|
|
- name: Trigger build debian latest (iobroker)
|
|
if: steps.git-check.outputs.modified == 'true'
|
|
uses: benc-uk/workflow-dispatch@v1.1
|
|
with:
|
|
workflow: Build debian latest (iobroker)
|
|
repo: buanet/ioBroker.docker
|
|
token: ${{ secrets.ACTIONS_PAT }}
|