Skip to content

A GitHub action for uploading a Meta Quest app to the Meta Quest store.

License

Notifications You must be signed in to change notification settings

RageAgainstThePixel/upload-meta-quest-build

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

upload-meta-quest-build

A GitHub action for uploading a Meta Quest app to the Meta Quest store.

How to use

outputs

  • build_id: The uploaded build id.

workflow

steps:
    # setup ovr platform util
  - uses: RageAgainstThePixel/setup-ovr-platform-util@v1
    # upload meta quest build
  - uses: RageAgainstThePixel/upload-meta-quest-build@v2
    id: upload
    with:
      appId: ${{ secrets.APP_ID }}
      appSecret: ${{ secrets.APP_SECRET }}
      apkPath: 'path/to/apk'
    # use uploaded meta quest build id
  - run: 'echo ${{ steps.upload.build_id }}'

All Parameters

Oculus Platform Utility docs

Name Description Default Required
ageGroup Age group of the build. This can be TEENS_AND_ADULTS, MIXED_AGES, or CHILDREN. Yes
appId Your App ID from the meta store Yes
appSecret Your App secret from the meta store Must provide appSecret or token
token The App ID from the meta store Must provide appSecret or token
apkPath Path to the APK to upload Yes
obbPath Path to an obb file to upload No
assetsDir DLC Content to upload No
releaseChannel Which release channel to upload the apk to ALPHA No
releaseNotes Release notes to upload No
assetFilesConfig DLC Config No
languagePacksDir Additional languages No
debugSymbolsDir Path to the folder that contains the debug symbol file(s) No
debugSymbolsPattern Specifies a file pattern that matches the files names of all debug symbol files No

Related actions