Skip to content

Commit

Permalink
Next try with iOS
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan Kebekus committed Nov 18, 2023
1 parent 35a5d60 commit 2161171
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions .github/workflows/ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,21 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: true
- name: Install Qt
submodules: true
- name: Install Qt for Desktop
uses: jurplel/install-qt-action@v3
with:
cache: 'true'
cache-key-prefix: 'install-qt-action-macOS-host'
version: '6.5.2'
- name: Set QT_HOST_PATH
run: |
echo QT_HOST_PATH=$Qt6_DIR >> $GITHUB_ENV
- name: Install Qt for iOS
uses: jurplel/install-qt-action@v3
with:
cache: 'true'
cache-key-prefix: 'install-qt-action-ios'
target: 'ios'
version: '6.5.2'
- name: Configure
Expand All @@ -27,15 +37,6 @@ jobs:
- name: Compile
run: |
cmake --build build -- -sdk iphonesimulator
- name: Package
run: |
cmake --build build --target install
$Qt6_DIR/bin/macdeployqt addhoursandminutes.app -dmg
- name: Upload to developerBuilds
run: |
gh release upload --clobber developerBuilds addhoursandminutes.dmg
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Upload to developerBuilds
run: |
gh release upload --clobber developerBuilds build/src/Debug-iphonesimulator/addhoursandminutes.app
Expand Down

0 comments on commit 2161171

Please sign in to comment.