Skip to content

Commit

Permalink
- fix os matching condition
Browse files Browse the repository at this point in the history
  • Loading branch information
Talal Ashraf committed Feb 13, 2024
1 parent ede4973 commit b67b077
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-ampd-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}"
Expand All @@ -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 }}"
Expand Down

0 comments on commit b67b077

Please sign in to comment.