Address code review feedback

Co-authored-by: wheaney <42350981+wheaney@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot] 2026-02-13 19:48:43 +00:00
parent 9a83ea17e0
commit a2db045f6c
1 changed files with 9 additions and 1 deletions

View File

@ -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"