forked from Genymobile/scrcpy
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: Debug GitHubActions | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
name: | ||
description: 'Version name (default is ref name)' | ||
|
||
env: | ||
# $VERSION is used by release scripts | ||
VERSION: ${{ github.event.inputs.name || github.ref_name }} | ||
|
||
jobs: | ||
build-macos: | ||
runs-on: macos-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install tools | ||
run: brew install meson ninja nasm coreutils | ||
|
||
- name: Build macOS | ||
run: release/build_macos.sh | ||
|
||
- name: Package | ||
run: release/package_client.sh macos tar.gz | ||
|
||
- name: Upload release artifact | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: macos-debug-${{ env.VERSION }} | ||
path: release/output |