diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 894185d..31dd7dc 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,7 +26,7 @@ jobs: extended: true - name: Build - run: cd src && hugo --minify --destination ../build/ + run: cd src && hugo --minify --destination build/ - name: Setup Docker uses: docker/setup-buildx-action@v1 diff --git a/Dockerfile b/Dockerfile index d168d0f..6b91001 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,5 +14,5 @@ LABEL traefik.enable=true EXPOSE 80 RUN rm -Rf /usr/share/nginx/html/ && rm /etc/nginx/conf.d/default.conf -COPY ./build /usr/share/nginx/html/ +COPY ./src/build /usr/share/nginx/html/ CMD [ "nginx", "-g", "daemon off;" ] \ No newline at end of file