Skip to content

Commit

Permalink
macos
Browse files Browse the repository at this point in the history
  • Loading branch information
rom1v committed Nov 23, 2024
1 parent f711192 commit 7794da4
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/macos-debug.yml
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

0 comments on commit 7794da4

Please sign in to comment.