Skip to content

Commit

Permalink
Use runner.os for macOS too
Browse files Browse the repository at this point in the history
  • Loading branch information
cdecker committed Nov 7, 2023
1 parent af9efeb commit b69872d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:
- name: Install dependencies (MacOS)
run: |
brew install python3.10
if: ${{ matrix.runner == 'macOS' }}
if: ${{ runner.os == 'macOS' }}
- name: Install Protoc
uses: arduino/setup-protoc@v2
with:
Expand All @@ -119,6 +119,7 @@ jobs:
${{ matrix.packages_install }}
- name: Build artifacts
run: |
echo ${{ runner.os }}
# Actually do builds and make zips and whatnot
cargo dist build ${{ needs.plan.outputs.tag-flag }} --print=linkage --output-format=json ${{ matrix.dist_args }} > dist-manifest.json
echo "cargo dist ran successfully"
Expand Down

0 comments on commit b69872d

Please sign in to comment.