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:
parent
d7a4d9f24a
commit
11f57dfd56
6
.github/workflows/deploy.yml
vendored
6
.github/workflows/deploy.yml
vendored
@ -1,9 +1,9 @@
|
|||||||
name: Build & Push Images
|
name: Build & Push Images
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
workflow_dispatch: # Only allow manual triggers
|
||||||
branches: [main]
|
# push:
|
||||||
workflow_dispatch: # Allow manual triggers
|
# branches: [main] # Commented out - no auto-trigger
|
||||||
|
|
||||||
env:
|
env:
|
||||||
REGISTRY: ghcr.io
|
REGISTRY: ghcr.io
|
||||||
|
|||||||
5
.gitignore
vendored
5
.gitignore
vendored
@ -139,3 +139,8 @@ temp/
|
|||||||
|
|
||||||
# Prisma
|
# Prisma
|
||||||
prisma/migrations/dev.db*
|
prisma/migrations/dev.db*
|
||||||
|
|
||||||
|
# Large archive files
|
||||||
|
*.tar
|
||||||
|
*.tar.gz
|
||||||
|
*.zip
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user