Skip to content

Commit

Permalink
Package app on macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
vicr123 committed Apr 12, 2024
1 parent 345a09c commit c678991
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,22 @@ jobs:
project: theCheeseboard/contemporary-qml
commitish: main
- name: Install theterminal
id: theterminal
uses: theCheeseboard/actions/build-cmake-project@actions
with:
project: .
commitish: .
- name: Deploy theterminal
env:
SOURCE_DIRECTORY: ${{ steps.theterminal.outputs.source-directory }}
BUILD_DIRECTORY: ${{ steps.theterminal.outputs.build-directory }}
INSTALL_DIRECTORY: ${{ steps.theterminal.outputs.install-directory }}
runs: |
macdeployqt "$BUILD_DIRECTORY/application/theTerminal*.app" -qmlimport="$INSTALL_DIRECTORY/qml" -qmldir="$SOURCE_DIRECTORY" -qmlimport=/Users/victor/Qt/6.7.0/macos/qml/
mkdir output
mv "$BUILD_DIRECTORY/application/theTerminal*.app" ./output/
- name: Upload theterminal artifact
uses: actions/upload-artifact@v4
with:
name: theterminal-macos
path: output

0 comments on commit c678991

Please sign in to comment.