Skip to content

Commit

Permalink
ci: Fix OpenSSL path, add repository_dispatch trigger (#271)
Browse files Browse the repository at this point in the history
Add a repository_dispatch trigger to CI.

Fix path to OpenSSL for macos-latest in GitHub Actions.

Signed-off-by: Spencer Wilson <[email protected]>
  • Loading branch information
SWilson4 authored Dec 17, 2024
1 parent 07e5690 commit bba29e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
on: [push, pull_request, merge_group]
on: [push, pull_request, merge_group, repository_dispatch]

name: Continuous integration

Expand Down Expand Up @@ -45,7 +45,7 @@ jobs:

- name: Set OPENSSL_ROOT_DIR
if: startsWith(matrix.os, 'macos')
run: echo "OPENSSL_ROOT_DIR=/usr/local/opt/openssl@1.1" >> $GITHUB_ENV
run: echo "OPENSSL_ROOT_DIR=$(brew --prefix openssl)" >> $GITHUB_ENV

- name: Install Rust
run: |
Expand Down

0 comments on commit bba29e9

Please sign in to comment.