From 1557e6c1b3408ebced6e6c2e36cb7a6e6ea02a38 Mon Sep 17 00:00:00 2001 From: Igor Pecovnik Date: Sat, 8 Aug 2026 19:56:32 +0200 Subject: [PATCH] build-apps: publish apps images to armbian/distribution The apps build set release_repository: "distribution" (a label used for the cache path and to gate the upload step) but never set release_target_repository, so it fell back to the default `github.repository` (armbian/ci). The release-upload step (softprops/action-gh-release, repository: RELEASE_TARGET_REPOSITORY) therefore published the appliance images (Home Assistant / OMV / Kali) to armbian/ci releases instead of armbian/distribution, where the old scripts put them. Set release_target_repository: "armbian/distribution", mirroring how build-community.yml overrides it to armbian/community. GH_TOKEN is already secrets.ACCESS_TOKEN (the cross-repo-write PAT used for the community releases), so no secret change is needed provided it has write access to armbian/distribution. Signed-off-by: Igor Pecovnik --- .github/workflows/build-apps.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build-apps.yml b/.github/workflows/build-apps.yml index 058d665..6abf0b4 100644 --- a/.github/workflows/build-apps.yml +++ b/.github/workflows/build-apps.yml @@ -35,6 +35,7 @@ jobs: uses: ./.github/workflows/complete-artifact-matrix.yml with: release_repository: "distribution" + release_target_repository: "armbian/distribution" target_path: "apps/" team: "Release manager" repository_ref: "stable"