build: stage final updater 3.4 release manifest

This commit is contained in:
Masterluke77
2026-07-10 15:04:02 +02:00
parent 33aaaaea1e
commit 8a6e13c86e
@@ -0,0 +1,40 @@
name: Regenerate Final Updater 3.4 Release Manifest
on:
push:
branches:
- feature/updater-3.4-lifecycle
permissions:
contents: write
concurrency:
group: regenerate-final-updater-34-release-manifest
cancel-in-progress: false
jobs:
sync:
if: ${{ github.actor != 'github-actions[bot]' }}
runs-on: ubuntu-latest
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 vor Manifestbildung entfernen
shell: bash
run: rm -f .github/workflows/regenerate-updater34-final-release-manifest.yml
- name: Finalen Branch reproduzierbar erfassen
run: node tools/generate-release-manifest.mjs .
- name: Finales 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 final updater 3.4 release manifest'
git push origin HEAD:feature/updater-3.4-lifecycle