Implement the track export feature, with loop cue baked in. #52
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # This is a basic workflow to help you get started with Actions | |
| name: macOS Package | |
| on: [push, pull_request, workflow_dispatch] | |
| jobs: | |
| build: | |
| runs-on: macos-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| with: | |
| submodules: recursive | |
| - name: Install Qt | |
| uses: jurplel/install-qt-action@v3 | |
| with: | |
| version: '6.11.0' | |
| modules: 'qtmultimedia' | |
| - name: Build | |
| working-directory: ./ | |
| run: | | |
| cmake -Bbuild . -DCMAKE_BUILD_TYPE=Release | |
| cmake --build build --config Release | |
| - name: Package | |
| id: package | |
| working-directory: ./ | |
| continue-on-error: true | |
| run: | | |
| macdeployqt build/thplayer.app | |
| zip -r9 --symlinks thplayer-macos.zip thplayer.app | |
| - name: Upload | |
| if: steps.package.conclusion == 'success' | |
| uses: actions/upload-artifact@v6 | |
| with: | |
| name: macOS-Build | |
| path: thplayer-macos.zip |