Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -992,6 +992,11 @@ jobs:
with:
name: Linux
path: build_linux
- name: Download Build Artifacts (Android OpenXR)
uses: actions/download-artifact@v8
with:
name: Android OpenXR
path: build_android_openxr
- name: Upload Build
run: |
cd build_macos
Expand All @@ -1002,6 +1007,7 @@ jobs:
jinjanate Support/steam/main_depot.win.vdf.j2 > build_windows_openxr/main_depot.vdf
jinjanate Support/steam/main_depot.mac.vdf.j2 > build_macos/main_depot.vdf
jinjanate Support/steam/main_depot.linux.vdf.j2 > build_linux/main_depot.vdf
jinjanate Support/steam/main_depot.android.vdf.j2 > build_android_openxr/main_depot.vdf
jinjanate Support/steam/installscript_win.vdf.j2 > build_windows_openxr/installscript_win.vdf
steamcmd +login $STEAM_USERNAME +run_app_build $(pwd)/app.vdf +quit
env:
Expand All @@ -1012,6 +1018,7 @@ jobs:
OPEN_BRUSH_WINDOWS_DEPOT_ID: ${{ vars.STEAM_WINDOWS_DEPOT_ID }}
OPEN_BRUSH_MAC_DEPOT_ID: ${{ vars.STEAM_MAC_DEPOT_ID }}
OPEN_BRUSH_LINUX_DEPOT_ID: ${{ vars.STEAM_LINUX_DEPOT_ID }}
OPEN_BRUSH_ANDROID_DEPOT_ID: ${{ vars.STEAM_ANDROID_DEPOT_ID }}
OPEN_BRUSH_WINDOWS_EXECUTABLE: ${{ needs.configuration.outputs.basename}}.exe
CHANNEL: beta
- name: Update steam login secret
Expand Down
1 change: 1 addition & 0 deletions Support/steam/app.vdf.j2
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,6 @@
"{{ OPEN_BRUSH_WINDOWS_DEPOT_ID }}" build_windows_openxr/main_depot.vdf
"{{ OPEN_BRUSH_MAC_DEPOT_ID }}" build_macos/main_depot.vdf
"{{ OPEN_BRUSH_LINUX_DEPOT_ID }}" build_linux/main_depot.vdf
"{{ OPEN_BRUSH_ANDROID_DEPOT_ID }}" build_android_open_xr/main_depot.vdf
}
}
32 changes: 32 additions & 0 deletions Support/steam/main_depot.android.vdf.j2
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
"DepotBuildConfig"
{
// # Set your assigned depot ID here
"DepotID" "{{ OPEN_BRUSH_ANDROID_DEPOT_ID }}"

"ContentRoot" "build_android_openxr/Android"

"FileMapping"
{
// Include all files in the build output directory (ContentRoot)
"LocalPath" "*"

// Destination is the main install directory
"DepotPath" "."

// If LocalPath contains wildcards, setting this means that all
// matching files within subdirectories of LocalPath will also
// be included.
"recursive" "0"
}

// Install scripts
//"FileMapping" {
// "LocalPath" "../installscript_win.vdf"
// "DepotPath" "."
//}
//"InstallScript" "../installscript_win.vdf"

// Exclide symbols zip
"FileExclusion" "*.zip"
"FileExclusion" "build_log.txt"
}
Loading