Skip to content

Commit

Permalink
ci: allow running the release workflow manually.
Browse files Browse the repository at this point in the history
Also add the `MACOSX_DEPLOYMENT_TARGET` environment variable while building the Python library.
  • Loading branch information
plusvic committed Nov 29, 2024
1 parent c816fb3 commit c4b48b8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ on:
create:
tags:
- 'v*'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
Expand Down Expand Up @@ -172,6 +174,8 @@ jobs:
CIBW_TEST_SKIP: '*-macosx_arm64 *-macosx_universal2:arm64'
CIBW_BUILD_VERBOSITY: 1

MACOSX_DEPLOYMENT_TARGET: '10.12'

- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit c4b48b8

Please sign in to comment.