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
This commit is contained in:
T. Narantuya 2025-08-29 17:41:04 +09:00
parent d7a4d9f24a
commit 11f57dfd56
2 changed files with 8 additions and 3 deletions

View File

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

5
.gitignore vendored
View File

@ -139,3 +139,8 @@ temp/
# Prisma
prisma/migrations/dev.db*
# Large archive files
*.tar
*.tar.gz
*.zip