Skip to content

Commit 572f41b

Browse files
committed
Update / Modification from the production live system: 2026-03-01 20:50
1 parent 37ff7fd commit 572f41b

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

-1 KB
Binary file not shown.

.github/workflows/bi-monthly-release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Multi Monthly Release
1+
name: Bi-Monthly Random Release
22

33
on:
44
schedule:
@@ -30,7 +30,7 @@ jobs:
3030
fi
3131
3232
- name: Generate Dynamic Version Tag
33-
if: steps.check_day.outputs.match == 'true'
33+
if: github.event_name == 'workflow_dispatch' || steps.check_day.outputs.match == 'true'
3434
id: tag
3535
run: |
3636
# Letzten Tag suchen, der dem Schema vX.X.X entspricht
@@ -51,16 +51,16 @@ jobs:
5151
echo "tag_name=$FINAL_TAG" >> $GITHUB_OUTPUT
5252
5353
- name: Create ZIP of Scripts
54-
if: steps.check_day.outputs.match == 'true'
54+
if: github.event_name == 'workflow_dispatch' || steps.check_day.outputs.match == 'true'
5555
run: zip -r smarthome_scripts_${{ steps.tag.outputs.tag_name }}.zip iobroker/
5656

5757
- name: Create GitHub Release
58-
if: steps.check_day.outputs.match == 'true'
58+
if: github.event_name == 'workflow_dispatch' || steps.check_day.outputs.match == 'true'
5959
uses: softprops/action-gh-release@v2
6060
with:
6161
tag_name: ${{ steps.tag.outputs.tag_name }}
6262
name: Automated Snapshot ${{ steps.tag.outputs.tag_name }}
6363
body: |
64-
Bi-monthly automated snapshot of productive ioBroker scripts.
64+
Automated snapshot of productive smarthome system scripts.
6565
Version incremented automatically.
6666
files: smarthome_scripts_${{ steps.tag.outputs.tag_name }}.zip

0 commit comments

Comments
 (0)