From 11d12d1f6a4d88de627c20e37dc34a7774b4bc65 Mon Sep 17 00:00:00 2001 From: Amir Raminfar Date: Wed, 10 Sep 2025 16:49:01 -0700 Subject: [PATCH] Revert "feat: enables the archiving of dozzle binaries" This reverts commit ed5090a9ecacfd93f68735d3628a733fe99ecee7. --- .github/workflows/dev.yml | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index 98323ca1..51f22a27 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -49,24 +49,3 @@ jobs: labels: ${{ steps.meta.outputs.labels }} cache-from: type=gha cache-to: type=gha,mode=max - - name: Create temporary containers for binary extraction - run: | - # Create containers for each platform without running them - docker create --platform linux/amd64 --name dozzle-amd64 ${{ fromJSON(steps.meta.outputs.json).tags[0] }} - docker create --platform linux/arm64 --name dozzle-arm64 ${{ fromJSON(steps.meta.outputs.json).tags[0] }} - - name: Extract binaries from containers - run: | - # Create directories for binaries - mkdir -p binaries/amd64 binaries/arm64 - - # Extract binaries from containers - docker cp dozzle-amd64:/dozzle binaries/amd64/dozzle - docker cp dozzle-arm64:/dozzle binaries/arm64/dozzle - - # Clean up containers - docker rm dozzle-amd64 dozzle-arm64 - - name: Archive binaries - uses: actions/upload-artifact@v4 - with: - name: dozzle-binaries-${{ steps.meta.outputs.version }} - path: binaries/