Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
uses: pnpm/action-setup@v4
with:
version: 9.12.3
- name: Use Node.js ${{ matrix.node-version }}
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
node-version: 20
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
Expand All @@ -45,8 +45,11 @@ jobs:
username: ${{ secrets.NCP_ACCESS_KEY }}
password: ${{ secrets.NCP_SECRET_KEY }}

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Docker front image build and push
uses: docker/build-push-action@v3
uses: docker/build-push-action@v6
with:
context: .
file: ./apps/client/Dockerfile.CI
Expand All @@ -58,7 +61,7 @@ jobs:
cache-to: type=registry,ref=cloud-canvas.kr.ncr.ntruss.com/front:dev,mode=max

- name: Docker front-hub image build and push
uses: docker/build-push-action@v3
uses: docker/build-push-action@v6
with:
context: .
file: ./apps/hub/Dockerfile.CI
Expand All @@ -70,7 +73,7 @@ jobs:
cache-to: type=registry,ref=cloud-canvas.kr.ncr.ntruss.com/front-hub:dev,mode=max

- name: Docker back image build and push
uses: docker/build-push-action@v3
uses: docker/build-push-action@v6
with:
context: .
file: ./apps/server/Dockerfile.CI
Expand Down
Loading