Skip to content

Commit

Permalink
Update build_packages.yml
Browse files Browse the repository at this point in the history
Make a venv
  • Loading branch information
csparker247 authored Aug 12, 2024
1 parent 498276a commit bcd1786
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/build_packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,10 @@ jobs:
- name: Install Qt6
run: |
python3.12 -m pip install --upgrade pip setuptools wheel
python3.12 -m pip install aqtinstall
python3.12 -m venv venv
source venv/bin/activate
python3 -m pip install --upgrade pip setuptools wheel
python3 -m pip install aqtinstall
aqt install-qt -O ${{ github.workspace }}/Qt/ mac desktop ${QT_VERSION}
- name: Install vc-deps
Expand Down Expand Up @@ -72,7 +74,7 @@ jobs:
- name: Create package
run: |
cmake --install build/ --prefix "${{ env.install_dir }}"
python3.12 utils/scripts/macos_codesign_release.py -i "${{ env.install_dir }}"
python3 utils/scripts/macos_codesign_release.py -i "${{ env.install_dir }}"
ditto -c -k "${{ env.install_dir }}" ${{ env.package_name }}
- name: Upload artifacts
Expand Down

0 comments on commit bcd1786

Please sign in to comment.