diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6476ebc..e3dbf97 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,6 +3,7 @@ { "push": { "branches": ["pure-rust"] }, "pull_request": {}, + "merge_group": {}, }, "name": "CI", "permissions": { "security-events": "write" }, @@ -144,30 +145,5 @@ }, ], }, - "docker-build": - { - "name": "Build & Push Docker Container", - "needs": ["build"], - "runs-on": "ubuntu-latest", - "steps": - [ - { - "name": "Checkout", - "uses": "actions/checkout@v4", - }, - { - "name": "Build Image", - "run": "docker buildx build -t ghcr.io/goval-community/homeval:${{ github.sha }} .", - }, - { - "name": "Log In to Registry", - "run": 'echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $ --password-stdin', - }, - { - "name": "Push Image", - "run": "docker push ghcr.io/goval-community/homeval:${{ github.sha }}", - }, - ], - }, }, }