From 68fe6b03667fffd48d40ed7ca96e42c74dfd1174 Mon Sep 17 00:00:00 2001 From: Samuel K Date: Mon, 18 May 2026 18:21:59 -0500 Subject: [PATCH] chore(ci): tidy workflow comments --- .github/workflows/desktop-ci.yml | 8 -------- .github/workflows/promote-release.yml | 2 +- 2 files changed, 1 insertion(+), 9 deletions(-) diff --git a/.github/workflows/desktop-ci.yml b/.github/workflows/desktop-ci.yml index 898a4705f..adca54a4d 100644 --- a/.github/workflows/desktop-ci.yml +++ b/.github/workflows/desktop-ci.yml @@ -74,7 +74,6 @@ jobs: cache: npm cache-dependency-path: desktop/package-lock.json - # ── Build Go CLI binary ── - name: Build CLI (unix) if: runner.os != 'Windows' run: | @@ -97,13 +96,11 @@ jobs: $env:GOARCH = "amd64" go build -o desktop/resources/bin/devsy.exe . - # ── Windows native build tools ── - name: Configure Windows build tools if: runner.os == 'Windows' shell: pwsh run: echo "GYP_MSVS_VERSION=2022" >> $env:GITHUB_ENV - # ── Setup Python for native module builds ── - name: Setup Python uses: actions/setup-python@v6 with: @@ -112,17 +109,14 @@ jobs: - name: Install setuptools run: pip install setuptools - # ── Install Electron dependencies ── - name: Install dependencies working-directory: desktop run: npm ci - # ── Install xvfb on Linux for e2e tests ── - name: Install xvfb if: runner.os == 'Linux' run: sudo apt-get update && sudo apt-get install -y xvfb - # ── E2E tests ── - name: Run e2e tests (Linux) if: runner.os == 'Linux' working-directory: desktop @@ -137,7 +131,6 @@ jobs: npm run electron:build npx playwright test - # ── Package ── - name: Package with electron-builder working-directory: desktop run: npx electron-builder ${{ matrix.builder-args }} --config electron-builder.yml @@ -150,7 +143,6 @@ jobs: # APPLE_APP_SPECIFIC_PASSWORD: ${{ secrets.APPLE_APP_SPECIFIC_PASSWORD }} # APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }} - # ── Upload artifacts ── - name: Upload artifacts uses: actions/upload-artifact@v5 with: diff --git a/.github/workflows/promote-release.yml b/.github/workflows/promote-release.yml index b7ad31f50..2d39ac2be 100644 --- a/.github/workflows/promote-release.yml +++ b/.github/workflows/promote-release.yml @@ -33,7 +33,7 @@ jobs: RC_TAG: ${{ inputs.rc_tag }} run: | if ! echo "$RC_TAG" | grep -qE '^v[0-9]+\.[0-9]+\.[0-9]+-rc\.[0-9]+$'; then - echo "::error::Invalid RC tag format: $RC_TAG (expected v*.*.*-rc*)" + echo "::error::Invalid RC tag format: $RC_TAG (expected v*.*.*-rc.*)" exit 1 fi