From de13f9ba22a9c355e036162bb64007a1ff3129d4 Mon Sep 17 00:00:00 2001 From: Michael Klishin Date: Thu, 7 Nov 2024 23:34:03 -0500 Subject: [PATCH] Drop the OCI image publishing workflow in favor of local Make target --- .github/workflows/publish-oci.yml | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 .github/workflows/publish-oci.yml diff --git a/.github/workflows/publish-oci.yml b/.github/workflows/publish-oci.yml deleted file mode 100644 index e256e45..0000000 --- a/.github/workflows/publish-oci.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: Rebuild and publish OCI - -on: - push: - paths: ['src/**', '.github/workflows/publish-oci.yml', 'Dockerfile-github'] - -jobs: - docker: - runs-on: ubuntu-latest - steps: - - name: Set up QEMU - uses: docker/setup-qemu-action@v3 - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - - name: Login to Docker Hub - uses: docker/login-action@v3 - with: - username: ${{ secrets.DOCKERHUB_USERNAME }} - password: ${{ secrets.DOCKERHUB_TOKEN }} - - name: Build and push - uses: docker/build-push-action@v6 - with: - file: Dockerfile-github - platforms: linux/amd64 - push: true - tags: rabbitmqdevenv/cloudsmith-action:latest