Skip to content

Commit

Permalink
fix: be 변경 디렉토리 인식 path 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
nowChae committed Nov 15, 2024
1 parent 9325f09 commit 829f522
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/backend-ci-cd-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
branches:
- 'develop'
paths:
- 'packages/BE/**'
- 'packages/server/**'
workflow_dispatch:

jobs:
Expand Down Expand Up @@ -73,9 +73,10 @@ jobs:
docker stop you-quiz-be-test || true
docker rm you-quiz-be-test || true
docker run -d --name you-quiz-be-test --env-file ./packages/BE/.env -p 80:3000 you-quiz-be-test
docker run -d --name you-quiz-be-test --env-file ./packages/server/.env -p 80:3000 you-quiz-be-test
- name: Github Actions IP를 ACG, ACL 규칙에서 삭제
if: ${{ always() }}
run: |
chmod -R 777 ~/cli_linux
cd ~/cli_linux
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.be
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=linux/amd64 node:20
FROM node:20

WORKDIR /app

Expand Down

0 comments on commit 829f522

Please sign in to comment.