diff --git a/.github/workflows/qa-build.yml b/.github/workflows/qa-build.yml index 3f0aabf0..e7cf201a 100644 --- a/.github/workflows/qa-build.yml +++ b/.github/workflows/qa-build.yml @@ -79,7 +79,7 @@ jobs: cmd: install # will run `yarn install` command - name: Assemble with Stacktrace - QA Debug if: (github.event.inputs.environment == 'qa' || inputs.environment == 'qa') && (github.event.inputs.type == 'debug' || inputs.type == 'debug') - run: yarn move:qa && cd android && ./gradlew assembleDebug --stacktrace && ls -R android + run: yarn move:qa && cd android && ./gradlew assembleDebug --stacktrace && ls -R ./ - name: Assemble with Stacktrace - DEV Debug if: (github.event.inputs.environment == 'dev' || inputs.environment == 'dev') && (github.event.inputs.type == 'debug' || inputs.type == 'debug') @@ -94,5 +94,5 @@ jobs: uses: actions/upload-artifact@v3 with: name: app-${{ github.event.inputs.environment || inputs.environment }}-${{ github.event.inputs.type || inputs.type }} - path: android/app/build/outputs/apk/${{ github.event.inputs.environment || inputs.environment }}/${{ github.event.inputs.type || inputs.type }}/ + path: app/build/outputs/apk/${{ github.event.inputs.environment || inputs.environment }}/${{ github.event.inputs.type || inputs.type }}/ retention-days: 30