doc: Added link to my postman collection #214
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
| name: Build Debug | |
| on: [push, pull_request] | |
| jobs: | |
| build-debug: | |
| name: Build Debug | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Setup Java | |
| uses: actions/setup-java@v3 | |
| with: | |
| distribution: 'zulu' | |
| java-version: '21' | |
| - name: Setup | |
| run: | | |
| chmod +x gradlew | |
| ./gradlew wrapper | |
| - name: Build | |
| run: | | |
| ./gradlew assembleDebug | |
| - name: Upload | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: menza-debug.apk | |
| path: app/build/outputs/apk/debug/app-debug.apk |