From 30e77e39b7784ed4aee1ed101a1e883de7f2d0bf Mon Sep 17 00:00:00 2001 From: Chris Done Date: Mon, 1 Sep 2025 14:15:47 +0100 Subject: [PATCH] Just use regular docker push --- .github/workflows/push.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index ae80a7f..0c771ec 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -29,11 +29,5 @@ jobs: - run: nix run .#packages.x86_64-linux.container.copyToDockerDaemon - run: docker tag perfly:latest ghcr.io/artificialio/perfly:${{ inputs.release_name }} # Build and push the image - - name: Build and Push Docker image - uses: docker/build-push-action@v6 - with: - context: . - push: true - tags: | - ghcr.io/artificialio/perfly:latest - ghcr.io/artificialio/perfly:${{ inputs.release_name }} + - name: Push Docker image + run: docker push ghcr.io/artificialio/perfly:${{ inputs.release_name }}