From 3da84804b647c2f937fe81ad8f1ae577dd85d919 Mon Sep 17 00:00:00 2001 From: Jakob Borg Date: Mon, 11 Aug 2025 19:17:33 +0200 Subject: [PATCH] build: just special case stable-v2 for Debian for now --- .github/workflows/build-syncthing.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-syncthing.yaml b/.github/workflows/build-syncthing.yaml index ebe9b7eaa..e740fd572 100644 --- a/.github/workflows/build-syncthing.yaml +++ b/.github/workflows/build-syncthing.yaml @@ -900,8 +900,11 @@ jobs: # Decide whether packages should go to stable, candidate or nightly - name: Prepare packages run: | - mkdir -p packages/syncthing-$RELEASE_GENERATION/$RELEASE_KIND - mv packages/*.deb packages/syncthing-$RELEASE_GENERATION/$RELEASE_KIND + if [[ $RELEASE_KIND == stable && $RELEASE_GENERATION == v2 ]] ; then + RELEASE_KIND=stable-v2 + fi + mkdir -p packages/syncthing/$RELEASE_KIND + mv packages/*.deb packages/syncthing/$RELEASE_KIND - name: Pull archive uses: docker://docker.io/rclone/rclone:latest