Skip to content

Commit

Permalink
Fix invalid symbol in deploy-pypi.yml
Browse files Browse the repository at this point in the history
Signed-off-by: Loren Eteval <[email protected]>
  • Loading branch information
LorenEteval committed May 28, 2024
1 parent 8d26661 commit f88b706
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,14 +107,14 @@ jobs:
- name: Install macOS dependencies
run: |
brew install create-dmg
if: runner.os == "macOS"
if: runner.os == 'macOS'

# Remove problematic brew libs if Intel Mac
- name: Remove problematic brew libs on Intel Mac
run: |
brew remove --force --ignore-dependencies openssl@3
brew cleanup openssl@3
if: runner.os == "macOS" && runner.arch == "X64"
if: runner.os == 'macOS' && runner.arch == 'X64'

- name: Install setuptools, wheel
run: >-
Expand Down Expand Up @@ -172,12 +172,12 @@ jobs:
run: |
python3 -m pip uninstall -y PySide6-Essentials shiboken6
python3 -m pip install PySide6-Essentials==6.5.3
if: runner.os == "macOS"
if: runner.os == 'macOS'

- name: Run deploy script again if on macOS
run: |
python3 Deploy.py
if: runner.os == "macOS"
if: runner.os == 'macOS'

- name: Store the distribution packages
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit f88b706

Please sign in to comment.