feat(workflows): add GitHub release sync workflow
All checks were successful
Auto Changelog & Release / detect-version-change (push) Successful in 3s
Auto Changelog & Release / release (push) Has been skipped
Auto Changelog & Release / changelog-only (push) Successful in 6s
Build and Publish nightly package / build-and-publish (push) Successful in 58s

- Introduces a workflow to synchronize releases with GitHub
- Supports manual triggers with optional tag input
- Utilizes a custom releases sync action for automation
This commit is contained in:
2025-05-26 16:32:57 +02:00
parent 9494fa3619
commit e4785769ea

View File

@@ -19,7 +19,7 @@ jobs:
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Run Releases Sync Action - name: Run Releases Sync Action
uses: https://git.0xmax42.io/actions/releases-sync uses: https://git.0xmax42.io/actions/releases-sync@main
with: with:
tag_name: ${{ inputs.tag || github.event.release.tag_name }} tag_name: ${{ inputs.tag || github.event.release.tag_name }}
github_token: ${{ secrets.SYNC_GITHUB_TOKEN }} github_token: ${{ secrets.SYNC_GITHUB_TOKEN }}