build: stage refreshed updater 3.4 manifest

This commit is contained in:
Masterluke77
2026-07-10 14:48:38 +02:00
parent 196919c5e5
commit 537af2509c
@@ -0,0 +1,33 @@
name: Refresh Updater 3.4 Manifest
on:
push:
branches:
- feature/updater-3.4-lifecycle
permissions:
contents: write
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'
- run: node tools/generate-release-manifest.mjs .
- name: Manifest committen und Workflow entfernen
shell: bash
run: |
set -euo pipefail
rm -f .github/workflows/sync-updater34-final-manifest.yml
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: refresh updater 3.4 release manifest'
git push origin HEAD:feature/updater-3.4-lifecycle