Skip to content

Commit

Permalink
Let's see if this other trick works for QtDir
Browse files Browse the repository at this point in the history
  • Loading branch information
annejan committed Nov 28, 2023
1 parent f68a666 commit de5f6ba
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,12 @@ jobs:
copy LICENSE src\release\LICENSE.txt
- name: Install Inno Setup
run: choco install innosetup
- name: Use Qt
run: |
echo "Qt is installed in ${{ steps.install-qt.outputs.Qt5_DIR }}"
- name: Create Installer with Inno Setup
run: ISCC.exe qtpass.iss
with:
env:
QtDir: ${{ steps.install-qt.outputs.Qt5_DIR }}
- name: Upload Artifact
uses: actions/upload-artifact@v3
Expand All @@ -44,14 +47,19 @@ jobs:
uses: jurplel/install-qt-action@v3
with:
version: '5.15.2'
- name: Install create-dmg
run: |
brew install create-dmg
- name: Build QtPass
run: |
qmake
make
macdeployqt main/QtPass.app
- name: Create DMG
run: create-dmg main/QtPass.dmg main/QtPass.app
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: PyQtPass-macOS
path: macdeployqt main/QtPass.app
path: main/QtPass.dmg

0 comments on commit de5f6ba

Please sign in to comment.