diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 580d333..cee947b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -99,45 +99,3 @@ jobs: github_token: ${{ secrets['GITHUB_TOKEN'] }} branch: build directory: ./sj-overlays - - docker-image: - runs-on: ubuntu-latest - if: github.ref == 'refs/heads/master' - needs: - - lint-deploy - - permissions: - contents: read - packages: write - - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Set up QEMU - uses: docker/setup-qemu-action@v2 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 - - - name: Log in to the Container registry - uses: docker/login-action@v2 - with: - registry: ${{ env.REGISTRY }} - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} - - - name: Extract metadata (tags, labels) for Docker - id: meta - uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7 - with: - images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} - - - name: Build and push Docker image - uses: docker/build-push-action@v4 - with: - context: . - push: true - platforms: linux/amd64 - tags: ${{ steps.meta.outputs.tags }} - labels: ${{ steps.meta.outputs.labels }}