SysDVR-Client macos (cross platform) #12
Workflow file for this run
This file contains 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
name: SysDVR-Client macos (cross platform) | |
on: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
shell: bash | |
run: brew install dmg2img | |
- name: Setup .NET SDK | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: "8.x" | |
- name: Run build script | |
shell: bash | |
run: | | |
cd Client/Platform/ | |
chmod +x BuildMacos.sh | |
./BuildMacos.sh | |
- name: Upload artifact (intel) | |
uses: actions/upload-artifact@v3 | |
with: | |
name: SysDVR-Cilent macos intel | |
path: Client/SysDVRClient-MacOs-x64.zip | |
- name: Upload artifact (arm) | |
uses: actions/upload-artifact@v3 | |
with: | |
name: SysDVR-Cilent macos arm | |
path: Client/SysDVRClient-MacOs-arm64.zip | |