Updater 3.4 – Lifecycle Hardening #28
@@ -0,0 +1,44 @@
|
||||
name: Regenerate Clean Updater 3.4 Manifest
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- feature/updater-3.4-lifecycle
|
||||
|
||||
permissions:
|
||||
contents: write
|
||||
|
||||
concurrency:
|
||||
group: regenerate-clean-updater-34-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: Temporären Workflow vor der Manifestbildung entfernen
|
||||
shell: bash
|
||||
run: rm -f .github/workflows/sync-updater34-clean-manifest.yml
|
||||
|
||||
- name: Manifest aus dem tatsächlich verbleibenden Branch erzeugen
|
||||
run: node tools/generate-release-manifest.mjs .
|
||||
|
||||
- name: Sauberes 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 clean updater 3.4 release manifest'
|
||||
git push origin HEAD:feature/updater-3.4-lifecycle
|
||||
Reference in New Issue
Block a user