From 65d2521ee1f8f3cd1cfc78f33695f726a6b1b1e0 Mon Sep 17 00:00:00 2001 From: Berry Langerak Date: Thu, 9 Oct 2025 15:41:23 +0200 Subject: [PATCH] Dev container not used in pipeline. --- .github/workflows/ci.yml | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5410219..b77397f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -47,24 +47,13 @@ jobs: echo "Generated tag: ${TAG}" echo "Generated image: ${IMAGE}" - - name: Build development image - run: docker build --target development -t simple-ci:dev . - - name: Build production image run: docker build --target production -t simple-ci:prod . - name: Save images run: | - docker save simple-ci:dev | gzip > dev-image.tar.gz docker save simple-ci:prod | gzip > prod-image.tar.gz - - name: Upload dev image artifact - uses: actions/upload-artifact@v4 - with: - name: dev-image - path: dev-image.tar.gz - retention-days: 1 - - name: Upload prod image artifact uses: actions/upload-artifact@v4 with: