diff --git a/.github/workflows/docker-build.yaml b/.github/workflows/docker-build.yaml index 7a2b9dd..bb1becc 100644 --- a/.github/workflows/docker-build.yaml +++ b/.github/workflows/docker-build.yaml @@ -83,8 +83,7 @@ jobs: options: -v ${{ github.workspace }}:/work run: | cd /work - make frontend - ls -alt /work + make frontend && echo "print contents of /work/dist" && ls -alt /work/dist - name: Set up QEMU uses: docker/setup-qemu-action@v2 @@ -144,8 +143,8 @@ jobs: options: -v ${{ github.workspace }}:/work run: | cd /work - make frontend - ls -alt /work + make frontend && echo "print contents of /work/dist" && ls -alt /work/dist + - name: Set up QEMU uses: docker/setup-qemu-action@v2 diff --git a/Makefile b/Makefile index 1835f24..b5c4fc1 100644 --- a/Makefile +++ b/Makefile @@ -59,7 +59,7 @@ frontend: cd webapp/frontend npm install -g @angular/cli@9.1.4 mkdir -p $(CURDIR)/dist - npm install + npm ci npm run build:prod -- --output-path=$(CURDIR)/dist # clean: