Feat: Adds possibility to use PR number as version code (#652) #352
This file contains 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
# archive creates and publishes an apk for testing | |
name: archive | |
on: [push] | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/setup-java@v2 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: checkout | |
uses: actions/checkout@v2 | |
- run: ./gradlew clean assembleDevFullRelease | |
- name: uploads dev apk | |
uses: actions/upload-artifact@v3 | |
with: | |
name: dev-apk | |
path: app/build/outputs/apk/devFull/release |