Skip to content

Commit 78ce0ce

Browse files
committed
fix: 배포 워크 플로우 수정
1 parent c9e0747 commit 78ce0ce

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/deploy-prod.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
2929
- name: Create tar archive
3030
run: |
31-
tar -cvzf batch.tar.gz --exclude='.git' --exclude='.github' .
31+
tar -cvzf batch.tar.gz --exclude='.git' --exclude='.github' --exclude='.gitignore' --exclude='*.tar.gz' .
3232
3333
- name: Transfer archive via SCP
3434
uses: appleboy/scp-action@v0.1.7

.github/workflows/deploy-stage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
2929
- name: Create tar archive
3030
run: |
31-
tar -cvzf batch.tar.gz --exclude='.git' --exclude='.github' .
31+
tar -cvzf batch.tar.gz --exclude='.git' --exclude='.github' --exclude='.gitignore' --exclude='*.tar.gz' .
3232
3333
- name: Transfer archive via SCP
3434
uses: appleboy/scp-action@v0.1.7

0 commit comments

Comments
 (0)