TP-0000 | if conditions corrected
This commit is contained in:
committed by
GitHub Enterprise
parent
6b675bbc0d
commit
2e2b1eac35
6
.github/workflows/newBuild.yml
vendored
6
.github/workflows/newBuild.yml
vendored
@@ -73,13 +73,13 @@ jobs:
|
||||
if: ((github.event.inputs.environment == 'qa' || inputs.environment == 'qa') && (github.event.inputs.type == 'debug' || inputs.type == 'debug'))
|
||||
run: yarn move:qa && yarn debug && cd android && ./gradlew assembleDebug
|
||||
- name: Assemble with Stacktrace - Dev debug
|
||||
if: (github.event.inputs.environment == 'dev' || inputs.environment == 'dev' && github.event.inputs.type == 'debug' || inputs.type == 'debug')
|
||||
if: ((github.event.inputs.environment == 'dev' || inputs.environment == 'dev') && (github.event.inputs.type == 'debug' || inputs.type == 'debug'))
|
||||
run: yarn move:dev && yarn debug && cd android && ./gradlew assembleDebug
|
||||
- name: Assemble with Stacktrace - QA release
|
||||
if: (github.event.inputs.environment == 'qa' || inputs.environment == 'qa' && github.event.inputs.type == 'release' || inputs.type == 'release')
|
||||
if: ((github.event.inputs.environment == 'qa' || inputs.environment == 'qa') && (github.event.inputs.type == 'release' || inputs.type == 'release'))
|
||||
run: yarn move:qa && cd android && ./gradlew assembleRelease
|
||||
- name: Assemble with Stacktrace - Dev release
|
||||
if: (github.event.inputs.environment == 'dev' || inputs.environment == 'dev' && github.event.inputs.type == 'debug' || inputs.type == 'release')
|
||||
if: ((github.event.inputs.environment == 'dev' || inputs.environment == 'dev') && (github.event.inputs.type == 'debug' || inputs.type == 'release'))
|
||||
run: yarn move:dev && cd android && ./gradlew assembleRelease
|
||||
- name: Upload APK as Artifact
|
||||
uses: actions/upload-artifact@v3
|
||||
|
||||
Reference in New Issue
Block a user