From 1b895ce3e7fc9108b5306e901d6b050a538473cd Mon Sep 17 00:00:00 2001 From: xgreenx Date: Wed, 15 Nov 2023 20:22:24 +0000 Subject: [PATCH 1/3] Fix macos binary publishing --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bd6757c96a2..9d502c8a114 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -448,6 +448,7 @@ jobs: uses: docker/setup-buildx-action@v1 - name: Log in to the ghcr.io registry + if: matrix.job.os != 'macos-latest' uses: docker/login-action@v1 with: registry: ${{ env.REGISTRY }} From 9f57be8c9159bf9d93bbe9d886123bdce95f46e9 Mon Sep 17 00:00:00 2001 From: xgreenx Date: Wed, 15 Nov 2023 20:25:11 +0000 Subject: [PATCH 2/3] Fix macos binary publishing --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9d502c8a114..d80c92b138d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -448,7 +448,7 @@ jobs: uses: docker/setup-buildx-action@v1 - name: Log in to the ghcr.io registry - if: matrix.job.os != 'macos-latest' + if: matrix.job.os == 'buildjet-4vcpu-ubuntu-2204' uses: docker/login-action@v1 with: registry: ${{ env.REGISTRY }} From 5e4e5ec20d62dbb0e8fc8a5e6c0ee78ef0fee735 Mon Sep 17 00:00:00 2001 From: xgreenx Date: Wed, 15 Nov 2023 20:30:14 +0000 Subject: [PATCH 3/3] Fix macos binary publishing --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d80c92b138d..0eb44ea4259 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -456,6 +456,7 @@ jobs: password: ${{ secrets.GITHUB_TOKEN }} - name: Log in to the docker.io registry + if: matrix.job.os == 'buildjet-4vcpu-ubuntu-2204' uses: docker/login-action@v2 with: username: fuellabs