Skip to content

Commit

Permalink
chore: Update GitHub Actions workflow to build and release OpenSSL fo…
Browse files Browse the repository at this point in the history
…r macOS
  • Loading branch information
royshil committed Jul 13, 2024
1 parent ed4938c commit b991916
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ jobs:
strategy:
matrix:
config:
- "Debug"
- "Release"

defaults:
Expand All @@ -45,12 +44,14 @@ jobs:
uses: "actions/checkout@v4"

- name: "Run build-macos.sh"
run: "./build-macos.sh ${{ matrix.config }} ${{ steps.get-version.outputs.version }}"
run: |
chmod +x build-macos.sh
./build-macos.sh
- name: "Upload artifact"
uses: "actions/upload-artifact@v4"
with:
name: "opencv-macos-${{ matrix.config }}"
name: "openssl-macos-${{ matrix.config }}"
path: "release/*.tar.gz"

Release:
Expand Down

0 comments on commit b991916

Please sign in to comment.