Merge branch 'main' into beta

This commit is contained in:
buanet
2024-01-19 13:38:50 +01:00
9 changed files with 13 additions and 8 deletions

View File

@@ -150,7 +150,7 @@ jobs:
platforms: |
linux/amd64
linux/arm64/v8
# linux/arm/v7
# linux/arm/v7
tags: |
buanet/iobroker:beta-node${{ vars.EXPERIMENTAL_NODE_VERSION }},
buanet/iobroker:${{ env.version }}-node${{ vars.EXPERIMENTAL_NODE_VERSION }},

View File

@@ -49,7 +49,7 @@ jobs:
- name: Check for modified files
id: git-check
run: echo ::set-output name=modified::$([ -z "`git status --porcelain`" ] && echo "false" || echo "true")
run: echo "modified=$([ -z "`git status --porcelain`" ] && echo "false" || echo "true")" >> $GITHUB_OUTPUT
- name: Commit latest release version
if: steps.git-check.outputs.modified == 'true'