From b67b0771a716830d52fe52516418928a9ed24a06 Mon Sep 17 00:00:00 2001 From: Talal Ashraf Date: Wed, 14 Feb 2024 01:37:37 +0500 Subject: [PATCH] - fix os matching condition --- .github/workflows/build-ampd-release.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-ampd-release.yaml b/.github/workflows/build-ampd-release.yaml index 2cc911853..76f1c9c5f 100644 --- a/.github/workflows/build-ampd-release.yaml +++ b/.github/workflows/build-ampd-release.yaml @@ -56,7 +56,7 @@ jobs: - name: build and sign darwin binaries env: SEMVER: ${{ github.event.inputs.tag }} - if: matrix.os == 'macos-latest' + if: matrix.os == 'macos-12' run: | OS="darwin" ARCH="${{ matrix.arch }}" @@ -79,7 +79,7 @@ jobs: - name: build and sign linux binaries env: SEMVER: ${{ github.event.inputs.tag }} - if: matrix.os == 'ubuntu-latest' + if: matrix.os == 'ubuntu-22.04' run: | OS="linux" ARCH="${{ matrix.arch }}"