Skip to content

Commit

Permalink
further update
Browse files Browse the repository at this point in the history
  • Loading branch information
xwovr authored and rpavlik committed Jan 29, 2025
1 parent cef5c3d commit f6ccf65
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/macos-build-preset.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
workflow_dispatch:

jobs:
build-macos:
macos-build:
runs-on: macos-latest

steps:
Expand All @@ -17,7 +17,7 @@ jobs:
- name: Install Dependencies
run: |
brew update
brew install cmake ninja
brew install --formula cmake ninja
# Add any additional dependencies here
- name: Configure Build
Expand All @@ -35,6 +35,11 @@ jobs:
cd build
cmake --build . --target install
# Note: The com.apple.quarantine attribute is a macOS extended attribute that
# marks files as downloaded from the internet. When this flag is set, macOS’s
# Gatekeeper enforces security checks, prompting users to confirm whether they
# want to open the file. For developers who download the pre-built OpenXR Loader
# using a web browser, they need to manually remove the quarantine attribute.
- name: Add a note about the Quarantine flag
run: |
cd install
Expand Down

0 comments on commit f6ccf65

Please sign in to comment.