From 86a6ece51057fdd2e72ac0e1138fcf8ce86ffdfe Mon Sep 17 00:00:00 2001 From: EstrellaXD Date: Wed, 7 Jun 2023 21:36:41 +0800 Subject: [PATCH] fix: --- .github/workflows/docker.yml | 7 ++++--- Dockerfile | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 7e97d16f..79f38562 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -54,7 +54,7 @@ jobs: - name: Upload artifact uses: actions/upload-artifact@v3 with: - name: dist.zip + name: dist path: webui/dist.zip @@ -72,7 +72,7 @@ jobs: - name: download artifact uses: actions/download-artifact@v3 with: - name: dist.zip + name: dist path: dist.zip - name: Generate Release @@ -136,7 +136,8 @@ jobs: - name: Download artifact uses: actions/download-artifact@v3 with: - name: dist.zip + name: dist + path: backend/dist.zip - name: Build and push uses: docker/build-push-action@v4 diff --git a/Dockerfile b/Dockerfile index e380e5bf..9e0f62d7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,7 @@ ENV S6_SERVICES_GRACETIME=30000 \ WORKDIR /app COPY backend/requirements.txt . -COPY dist.zip . +COPY backend/dist.zip . RUN apk add --no-cache \ bash \ ca-certificates \