Skip to content

Commit 96f7cb3

Browse files
authored
Disable push of the Q1 build to Oculus (finally blocked by them) (#850)
1 parent d14eb17 commit 96f7cb3

File tree

1 file changed

+0
-40
lines changed

1 file changed

+0
-40
lines changed

.github/workflows/build.yml

Lines changed: 0 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1160,46 +1160,6 @@ jobs:
11601160
./ovr-platform-util upload-quest-build --app-id ${OCULUS_QUEST_APP_ID} --app-secret ${OCULUS_QUEST_APP_SECRET} --apk OpenBrush_Quest_$VERSION.apk --channel Beta:quest2+ --debug_symbols_dir ./arm64-v8a/ --debug-symbols-pattern '*.so' --notes "${CHANGELOG}" --age-group MIXED_AGES
11611161
fi
11621162
1163-
publish_oculus_quest1:
1164-
name: Publish Oculus Quest 1 Release
1165-
needs: [configuration, build]
1166-
runs-on: macos-latest # the ovr-platform-util tool is only available for Mac and Windows
1167-
if: |
1168-
github.event_name == 'push' &&
1169-
github.repository == 'icosa-foundation/open-brush' &&
1170-
(github.ref == 'refs/heads/main' || contains(github.ref, 'refs/tags/v'))
1171-
1172-
steps:
1173-
- name: Download Build Artifacts (Oculus Quest 1)
1174-
uses: actions/download-artifact@v4
1175-
with:
1176-
name: Oculus Quest (1)
1177-
path: build_oculus_quest1
1178-
- name: Publish Oculus Builds
1179-
env:
1180-
VERSION: ${{ needs.configuration.outputs.version }}
1181-
PRERELEASE: ${{ needs.configuration.outputs.prerelease }}
1182-
RAW_CHANGELOG: ${{ needs.configuration.outputs.rawchangelog }}
1183-
OCULUS_QUEST_APP_ID: ${{ vars.OCULUS_QUEST_APP_ID }}
1184-
OCULUS_QUEST_APP_SECRET: ${{ secrets.OCULUS_QUEST_APP_SECRET }}
1185-
run: |
1186-
mkdir releases1
1187-
mv build_oculus_quest1/*/com.Icosa.OpenBrush*apk releases1/OpenBrush_Quest1_$VERSION.apk
1188-
mv build_oculus_quest1/*/com.Icosa.OpenBrush*.symbols.zip releases1/symbols.zip
1189-
1190-
cd releases1
1191-
unzip symbols.zip
1192-
curl -L 'https://www.oculus.com/download_app/?id=1462426033810370' -o ovr-platform-util
1193-
chmod 755 ovr-platform-util
1194-
1195-
if [ "$PRERELEASE" == "false" ]
1196-
then
1197-
./ovr-platform-util upload-quest-build --app-id ${OCULUS_QUEST_APP_ID} --app-secret ${OCULUS_QUEST_APP_SECRET} --apk OpenBrush_Quest1_$VERSION.apk --channel LIVE:quest1only --debug_symbols_dir ./arm64-v8a/ --debug-symbols-pattern '*.so' --age-group MIXED_AGES
1198-
else
1199-
CHANGELOG="${RAW_CHANGELOG}"
1200-
./ovr-platform-util upload-quest-build --app-id ${OCULUS_QUEST_APP_ID} --app-secret ${OCULUS_QUEST_APP_SECRET} --apk OpenBrush_Quest1_$VERSION.apk --channel Beta:quest1only --debug_symbols_dir ./arm64-v8a/ --debug-symbols-pattern '*.so' --notes "${CHANGELOG}" --age-group MIXED_AGES
1201-
fi
1202-
12031163
publish_oculus_quest_arborxr:
12041164
name: Publish Oculus Quest 2+ Release ArborXR
12051165
needs: [configuration, build]

0 commit comments

Comments
 (0)