Skip to content

Commit aa11077

Browse files
committed
Add Mirador
1 parent 959cf6a commit aa11077

2 files changed

Lines changed: 35 additions & 2 deletions

File tree

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Generate Unsigned Package
2+
3+
on:
4+
push:
5+
branches:
6+
- "main"
7+
pull_request:
8+
branches:
9+
- "*"
10+
11+
jobs:
12+
build:
13+
runs-on: macos-13
14+
steps:
15+
- name: Checkout 🛎
16+
uses: actions/checkout@v3
17+
- name: Get Package Collection Generator
18+
uses: actions/checkout@v3
19+
with:
20+
repository: apple/swift-package-collection-generator
21+
path: swift-package-collection-generator
22+
- name: Build Package Collection Generator 🛠️
23+
run: |
24+
cd swift-package-collection-generator
25+
swift build --configuration release
26+
- name: Build Unsigned Package 🛠️
27+
run: swift-package-collection-generator/.build/release/package-collection-generate RealityKit-Collection-Input.json RealityKit-Package-Collection.json
28+
- name: Upload Artifact ⬆️
29+
uses: actions/upload-artifact@v3
30+
with:
31+
name: RealityKit-Package-Collection.json
32+
path: RealityKit-Package-Collection.json

RealityKit-Collection-Input.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
{
22
"name": "RealityKit Package Collection",
33
"overview": "Packages to be used by RealityKit apps",
4-
"keywords": ["RealityKit", "Augmented Reality", "ARKit", "RealityUI", "FocusEntity"],
4+
"keywords": ["RealityKit", "Augmented Reality", "ARKit", "RealityUI", "FocusEntity", "Vision", "Vision Pro", "visionOS", "Vision OS"],
55
"author": { "name": "Max Cobb" },
66
"packages": [
77
{ "url": "https://github.com/maxxfrazer/FocusEntity" },
88
{ "url": "https://github.com/maxxfrazer/RealityUI" },
9+
{ "url": "https://github.com/HyperARCo/Mirador" },
910
{ "url": "https://github.com/maxxfrazer/MultipeerHelper" },
1011
{ "url": "https://github.com/maxxfrazer/RealityGeometries" },
1112
{ "url": "https://github.com/maxxfrazer/RKPointPin" },
1213
{ "url": "https://github.com/maxxfrazer/RKProgressBar" }
1314
]
14-
}
15+
}

0 commit comments

Comments
 (0)