Created
February 18, 2022 17:06
-
-
Save titooan/5c0d08b60f89eb57307cf1bb8c53b111 to your computer and use it in GitHub Desktop.
Upload apks on AppCenter
This file contains hidden or 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
| - uses: actions/setup-node@v2 | |
| with: | |
| node-version: '14' | |
| cache: npm | |
| cache-dependency-path: '**/package-lock.json' | |
| - run: npm install -g appcenter-cli | |
| - name: publish dev apk to App Center | |
| run: appcenter distribute release --app DEV_APP_ID | |
| --file app/build/outputs/apk/dev/debug/app-dev-debug.apk | |
| --token ${{secrets.OUR_APPCENTER_TOKEN}} --group GROUP_NAME |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment