Skip to content

Commit

Permalink
infra: fix workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
hynseok committed Nov 3, 2024
1 parent 2c1aa85 commit f3f77e1
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ jobs:
ref: master
token: ${{ secrets.ACTION_TOKEN }}

- name: frontend 소스 복사
run: cp -r frontend/* .

- name: Docker 준비(1/4) - 메타데이터 생성 (Frontend)
id: meta-frontend
uses: docker/[email protected]
Expand Down Expand Up @@ -61,7 +64,6 @@ jobs:
platforms: linux/amd64
push: true
tags: ${{ steps.meta-frontend.outputs.tags }}
working-directory: frontend

build-backend:
runs-on: ubuntu-latest
Expand All @@ -79,6 +81,9 @@ jobs:
ref: master
token: ${{ secrets.ACTION_TOKEN }}

- name: backend 소스 복사
run: cp -r backend/* .

- name: Docker 준비(1/4) - 메타데이터 생성 (Backend)
id: meta-backend
uses: docker/[email protected]
Expand Down Expand Up @@ -111,7 +116,6 @@ jobs:
platforms: linux/amd64
push: true
tags: ${{ steps.meta-backend.outputs.tags }}
working-directory: backend

deploy:
runs-on: ubuntu-latest
Expand Down

0 comments on commit f3f77e1

Please sign in to comment.