From 11f57dfd56cc2d6eaf59e91a3dc6da0a7bc1eccc Mon Sep 17 00:00:00 2001 From: "T. Narantuya" Date: Fri, 29 Aug 2025 17:41:04 +0900 Subject: [PATCH] Update GitHub Actions workflow and add archive files to .gitignore - Modify deploy.yml workflow configuration - Add *.tar, *.tar.gz, *.zip to .gitignore to prevent large file commits --- .github/workflows/deploy.yml | 6 +++--- .gitignore | 5 +++++ 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index d66fbcf0..a80ea8a6 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -1,9 +1,9 @@ name: Build & Push Images on: - push: - branches: [main] - workflow_dispatch: # Allow manual triggers + workflow_dispatch: # Only allow manual triggers + # push: + # branches: [main] # Commented out - no auto-trigger env: REGISTRY: ghcr.io diff --git a/.gitignore b/.gitignore index 3d093c3d..9221220d 100644 --- a/.gitignore +++ b/.gitignore @@ -139,3 +139,8 @@ temp/ # Prisma prisma/migrations/dev.db* + +# Large archive files +*.tar +*.tar.gz +*.zip