From a2db045f6c90859cba2704da8586de5320742c43 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 13 Feb 2026 19:48:43 +0000 Subject: [PATCH] Address code review feedback Co-authored-by: wheaney <42350981+wheaney@users.noreply.github.com> --- .github/workflows/release.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c4a0ed4..fc75be7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -29,7 +29,7 @@ jobs: - name: Check if tag exists id: check-tag run: | - VERSION=$(cat VERSION) + VERSION="${{ steps.get-version.outputs.version }}" git fetch --tags if git rev-parse "v${VERSION}" >/dev/null 2>&1; then echo "Tag v${VERSION} already exists, skipping release" @@ -88,6 +88,14 @@ jobs: run: | VERSION="${{ needs.check-version-change.outputs.version }}" + # Verify setup scripts exist + for script in bin/breezy_gnome_setup bin/breezy_kwin_setup bin/breezy_vulkan_setup; do + if [ ! -f "$script" ]; then + echo "Error: $script not found" + exit 1 + fi + done + # Create a tag git config user.name "github-actions[bot]" git config user.email "github-actions[bot]@users.noreply.github.com"