diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index a9ab18f..54adf8a 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -3,8 +3,6 @@ name: "deploy" on: push: branches: main - pull_request: - branches: "**" jobs: docker: @@ -25,6 +23,8 @@ jobs: - name: Build and push uses: docker/build-push-action@v6 + env: + DOCKER_BUILD_NO_SUMMARY: true with: platforms: linux/amd64,linux/arm64 push: true @@ -38,4 +38,6 @@ jobs: docker pull images.exptech.dev/exptech-docs docker image ls -a cd /home/whes1015 - docker compose up -d \ No newline at end of file + docker compose up -d + docker image rm $(docker images -f "dangling=true" -q) + docker image ls -a \ No newline at end of file