From f3f77e163514c298f01429f4358402fc9e2dcbfe Mon Sep 17 00:00:00 2001 From: hynseok Date: Sun, 3 Nov 2024 17:25:49 +0900 Subject: [PATCH] infra: fix workflows --- .github/workflows/deploy.yaml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 4d90d3d..eb1f273 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -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/metadata-action@v5.5.1 @@ -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 @@ -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/metadata-action@v5.5.1 @@ -111,7 +116,6 @@ jobs: platforms: linux/amd64 push: true tags: ${{ steps.meta-backend.outputs.tags }} - working-directory: backend deploy: runs-on: ubuntu-latest