ci: regenerate updater 3.4 manifest from clean tree

This commit is contained in:
Masterluke77
2026-07-10 15:15:37 +02:00
parent d4943fe108
commit 76123e3760
@@ -0,0 +1,46 @@
name: Regenerate Updater 3.4 Manifest
on:
push:
branches:
- feature/updater-3.4-lifecycle
permissions:
contents: write
concurrency:
group: regenerate-updater-34-manifest
cancel-in-progress: true
jobs:
regenerate:
if: ${{ github.actor != 'github-actions[bot]' }}
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v6
with:
ref: feature/updater-3.4-lifecycle
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: '22.x'
- name: Hilfsworkflow entfernen und Manifest erzeugen
shell: bash
run: |
set -euo pipefail
rm -f .github/workflows/regenerate-updater34-manifest.yml
node tools/generate-release-manifest.mjs .
git diff --check
- name: Bereinigtes Manifest committen
shell: bash
run: |
set -euo pipefail
git config user.name 'vendoo-release-bot'
git config user.email 'vendoo-release-bot@users.noreply.github.com'
git add --all
git commit -m 'chore: regenerate updater 3.4 release manifest'
git push origin HEAD:feature/updater-3.4-lifecycle