Remove some references to RID internally and use uid instead. Also fix Area issue. #832
Workflow file for this run
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
name: 🔗 Builds | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: | |
- "main" | |
jobs: | |
static-checks: | |
name: 📊 Static checks | |
uses: ./.github/workflows/static_checks.yml | |
test-checks: | |
name: 🧪 Run Tests | |
uses: ./.github/workflows/test_checks.yml | |
android-build: | |
name: 🤖 Android | |
uses: ./.github/workflows/android_builds.yml | |
ios-build: | |
name: 🍏 iOS | |
uses: ./.github/workflows/ios_builds.yml | |
linux-build: | |
name: 🐧 Linux | |
uses: ./.github/workflows/linux_builds.yml | |
macos-build: | |
name: 🍎 macOS | |
uses: ./.github/workflows/macos_builds.yml | |
secrets: inherit | |
windows-build: | |
name: 🏁 Windows | |
uses: ./.github/workflows/windows_builds.yml | |
godot-build: | |
name: Godot | |
uses: ./.github/workflows/godot_builds.yml | |
web-build: | |
name: 🌐 Web Builds | |
uses: ./.github/workflows/web_builds.yml | |
merge: | |
runs-on: ubuntu-latest | |
name: Merge | |
needs: [android-build, ios-build, linux-build, macos-build, windows-build, godot-build, web-build] | |
steps: | |
- uses: actions/upload-artifact/merge@v4 | |
with: | |
name: godot-rapier-2d-single-simd-parallel | |
pattern: godot-rapier-2d-single-simd-parallel-* | |
- uses: actions/upload-artifact/merge@v4 | |
with: | |
name: godot-rapier-2d-single-enhanced-determinism | |
pattern: godot-rapier-2d-single-enhanced-determinism-* | |
- uses: actions/upload-artifact/merge@v4 | |
with: | |
name: godot-rapier-3d-single-simd-parallel | |
pattern: godot-rapier-3d-single-simd-parallel-* | |
- uses: actions/upload-artifact/merge@v4 | |
with: | |
name: godot-rapier-3d-single-enhanced-determinism | |
pattern: godot-rapier-3d-single-enhanced-determinism-* | |
release: | |
name: Create Release | |
permissions: | |
contents: write | |
needs: [merge] | |
uses: ./.github/workflows/release.yml | |
if: github.ref == 'refs/heads/main' | |
deploy: | |
name: Deploy Release to Godot Asset Library | |
uses: ./.github/workflows/deploy.yml | |
if: startsWith(github.event.ref, 'refs/tags/v') |