Skip to content

Commit 16d00d4

Browse files
authored
[Deploy] --frozen-lockfile 삭제 (#176)
* Revert "[Deploy] Backend Server CI/CD 구축 (#172)" This reverts commit a5202ad. * Fix: packageManager 버전 수정 * Deploy: deploy-express.yml 생성 * Remove: deploy.sh 삭제 * Chore: packageManager 버전 수정정 * Fix: pnpm 버전을 package.json과 일치하도록 수정 * Refactor: deploy-cloudfront.yml 최적화 - Actions 버전 업데이트 (checkout, setup-node, pnpm-action) - Node.js 20.x 버전으로 업그레이드 - pnpm 캐싱 추가 - --frozen-lockfile 플래그 추가 * Fix: --frozen-lockfile 삭제제
1 parent b2e2d77 commit 16d00d4

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/deploy-cloudfront.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
cache: "pnpm"
2424

2525
- name: Install dependencies
26-
run: pnpm install --frozen-lockfile
26+
run: pnpm install
2727

2828
- name: Generate Environment Variables File
2929
run: |

.github/workflows/deploy-express.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
cache: "pnpm"
2424

2525
- name: Install dependencies
26-
run: pnpm install --frozen-lockfile
26+
run: pnpm install
2727

2828
- name: Configure SSH
2929
uses: webfactory/ssh-agent@v0.8.0

0 commit comments

Comments
 (0)