feat: [ANDROAPP-6165] workflow dispatch test with feature branch #5
Workflow file for this run
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
name: Continuous delivery | |
env: | |
main_project_module: app | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
- develop | |
- release/* | |
- ANDROAPP-6165-CI-Migrate-ReadyForTestingAPK-job-from-Bitrise-to-GIthub-Actions | |
jobs: | |
deployment_job: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
# Set Current Date As Env Variable | |
- name: Set current date as env variable | |
id: date | |
run: echo "::set-output name=date::$(date +'%Y-%m-%d')" | |
# Set Repository Name As Env Variable | |
- name: Set repository name as env variable | |
run: echo "repository_name=$(echo '${{ github.repository }}' | awk -F '/' '{print $2}')" >> $GITHUB_ENV | |
- name: Set Up JDK | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: '17' | |
cache: 'gradle' | |
- name: Change wrapper permissions | |
run: chmod +x ./gradlew | |
# Create APK Debug | |
- name: Build apk debug project (APK) - ${{ env.main_project_module }} module | |
run: ./gradlew assembleDhisDebug | |
- name: Read version name from file | |
working-directory: ./gradle | |
id: read-version | |
run: echo "::set-output name=vName::$(grep 'vName' libs.versions.toml | awk -F' = ' '{print $2}' | tr -d '"')" | |
# Upload Artifact Build | |
- name: Upload Android artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ${{ env.repository_name }} - Android APK ${{ env.current_date }} - ${{ steps.date.outputs.date }} | |
path: ${{ env.main_project_module }}/build/outputs/apk/dhis/debug/dhis2-v${{ steps.read-version.outputs.vName }}-dhis-debug.apk |