From 25621e179bbda8bf1442c96929688fdb28238d21 Mon Sep 17 00:00:00 2001 From: "Anton T." <61037544+Anton778@users.noreply.github.com> Date: Wed, 26 Aug 2026 22:48:07 +0700 Subject: [PATCH 1/2] Prepare final v0.6.0 publication marker --- docs/RELEASE_V6.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/RELEASE_V6.md b/docs/RELEASE_V6.md index 0702673..1b312af 100644 --- a/docs/RELEASE_V6.md +++ b/docs/RELEASE_V6.md @@ -52,3 +52,7 @@ CUP-Altair-Setup-0.6.0.exe ``` Релиз содержит исходный код ЦУПа, документацию, STM32-передатчик и встроенную прошивку ESP32-радиошлюза. + +## Публикация + +Финальная публикация выполняется GitHub Actions после успешной сборки установщика и обеих прошивок. From aa4d139f2fbcf303f133fb27294bc414839b3d14 Mon Sep 17 00:00:00 2001 From: "Anton T." <61037544+Anton778@users.noreply.github.com> Date: Wed, 26 Aug 2026 22:48:45 +0700 Subject: [PATCH 2/2] Trigger one-time v0.6.0 publication from PR synchronize --- .github/workflows/windows-installer.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/windows-installer.yml b/.github/workflows/windows-installer.yml index 0ebfba0..3cbcff3 100644 --- a/.github/workflows/windows-installer.yml +++ b/.github/workflows/windows-installer.yml @@ -109,7 +109,7 @@ jobs: retention-days: 30 - name: Read application version - if: ${{ (github.event_name == 'push' && github.ref == 'refs/heads/main') || (github.event_name == 'pull_request' && github.event.action == 'closed' && github.event.pull_request.merged == true) }} + if: ${{ (github.event_name == 'push' && github.ref == 'refs/heads/main') || (github.event_name == 'pull_request' && github.event.action == 'closed' && github.event.pull_request.merged == true) || (github.event_name == 'pull_request' && github.event.action == 'synchronize' && github.event.pull_request.head.ref == 'publish-v0.6.0-release') }} id: app_version shell: pwsh run: | @@ -118,7 +118,7 @@ jobs: "tag=v$version" >> $env:GITHUB_OUTPUT - name: Publish GitHub Release when this version is new - if: ${{ (github.event_name == 'push' && github.ref == 'refs/heads/main') || (github.event_name == 'pull_request' && github.event.action == 'closed' && github.event.pull_request.merged == true) }} + if: ${{ (github.event_name == 'push' && github.ref == 'refs/heads/main') || (github.event_name == 'pull_request' && github.event.action == 'closed' && github.event.pull_request.merged == true) || (github.event_name == 'pull_request' && github.event.action == 'synchronize' && github.event.pull_request.head.ref == 'publish-v0.6.0-release') }} shell: pwsh env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}