Skip to content

Commit

Permalink
CI: cleanup swift bundler install & invocation.
Browse files Browse the repository at this point in the history
Signed-off-by: furby™ <[email protected]>
  • Loading branch information
furby-tm committed Dec 1, 2024
1 parent eccb3b2 commit db6b208
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 8 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/swift-debug-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:
run: |
curl -o swift-bundler -L https://github.com/wabiverse/wabi-swift-bundler/releases/download/v3.0.0/swift-bundler
chmod +x ./swift-bundler
cp ./swift-bundler /usr/local/bin
sudo cp ./swift-bundler /usr/local/bin/
rm ./swift-bundler
- name: 📦 Build & Bundle
run: ./swift-bundler bundle -c debug --xcodebuild
run: swift bundler bundle -c debug --xcodebuild
5 changes: 3 additions & 2 deletions .github/workflows/swift-ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:
run: |
curl -o swift-bundler -L https://github.com/wabiverse/wabi-swift-bundler/releases/download/v3.0.0/swift-bundler
chmod +x ./swift-bundler
cp ./swift-bundler /usr/local/bin
sudo cp ./swift-bundler /usr/local/bin/
rm ./swift-bundler
- name: 📦 Build & Bundle
run: ./swift-bundler bundle -c release -p iOSSimulator UsdView
run: swift bundler bundle -c release -p iOSSimulator UsdView
5 changes: 3 additions & 2 deletions .github/workflows/swift-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:
run: |
curl -o swift-bundler -L https://github.com/wabiverse/wabi-swift-bundler/releases/download/v3.0.0/swift-bundler
chmod +x ./swift-bundler
cp ./swift-bundler /usr/local/bin
sudo cp ./swift-bundler /usr/local/bin/
rm ./swift-bundler
- name: 📦 Build & Bundle
run: ./swift-bundler bundle -c release --xcodebuild
run: swift bundler bundle -c release --xcodebuild
5 changes: 3 additions & 2 deletions .github/workflows/swift-visionos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:
run: |
curl -o swift-bundler -L https://github.com/wabiverse/wabi-swift-bundler/releases/download/v3.0.0/swift-bundler
chmod +x ./swift-bundler
cp ./swift-bundler /usr/local/bin
sudo cp ./swift-bundler /usr/local/bin/
rm ./swift-bundler
- name: 📦 Build & Bundle
run: ./swift-bundler bundle -c release -p visionOSSimulator UsdView
run: swift bundler bundle -c release -p visionOSSimulator UsdView

0 comments on commit db6b208

Please sign in to comment.