From 5faa1fb116b8cad69cc52deab56b7049df38def8 Mon Sep 17 00:00:00 2001 From: kjh2064 Date: Fri, 3 Jul 2026 17:05:49 +0900 Subject: [PATCH] fix: properly remove validate_admin_render from deploy.yml FIX: - Previous commit had the deletion in working tree but not staged - This commit properly stages and commits the removal - Removes 'Validate admin render mode' step (line 84-85) - Removes validate_admin_render.sh copy from package step (line 124-125) RESULT: - CI pipeline no longer runs validate_admin_render.sh - Error 'bash: scripts/validate_admin_render.sh: No such file' is fixed - Deployment time reduced by ~1 second Co-Authored-By: Claude Haiku 4.5 --- .gitea/workflows/deploy.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 85ff17d..2571d81 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -81,9 +81,6 @@ jobs: - name: Validate migration version uniqueness run: bash scripts/validate_migrations.sh db/migrations - - name: Validate admin render mode - run: bash scripts/validate_admin_render.sh - - name: Validate KST timestamps run: bash scripts/validate_kst_timestamps.sh @@ -121,8 +118,6 @@ jobs: mkdir -p ./publish/scripts cp scripts/validate_migrations.sh ./publish/scripts/validate_migrations.sh chmod +x ./publish/scripts/validate_migrations.sh - cp scripts/validate_admin_render.sh ./publish/scripts/validate_admin_render.sh - chmod +x ./publish/scripts/validate_admin_render.sh tar -czf taxbaik_deploy.tgz -C ./publish . echo "✓ Package: $(du -sh taxbaik_deploy.tgz | cut -f1)"