Automatic project build #8
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: Build and sent to QA stageQa | ||
on: | ||
pull_request: | ||
# types: | ||
# - closed | ||
branches: [ "dev" ] | ||
workflow_dispatch: | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-java@v1 | ||
with: { java-version: 1.17 } | ||
- name: Build and send application stageQa to App Distribution | ||
env: | ||
STORE_PASSWORD: ${{ secrets.STORE_PASSWORD }} | ||
KEY_ALIAS: ${{ secrets.KEY_ALIAS }} | ||
KEY_PASSWORD: ${{ secrets.KEY_PASSWORD }} | ||
CREDENTIAL_FILE_CONTENT: ${{ secrets.CREDENTIAL_FILE_CONTENT }} | ||
VERSION_NAME: 1.${{ GITHUB_RUN_NUMBER }} | ||
Check failure on line 25 in .github/workflows/sendAppToQaAfterMergeStageQa.yml GitHub Actions / Build and sent to QA stageQaInvalid workflow file
|
||
run: | | ||
echo "$CREDENTIAL_FILE_CONTENT" > ./app/serviceCredentialsFile.json | ||
echo "App type: stageQa" >> ./app/src/releaseNotes.txt | ||
echo "buildNumber = ${GITHUB_RUN_NUMBER}" >> ./app/src/releaseNotes.txt | ||
echo "versionName = ${VERSION_NAME}" >> ./app/src/releaseNotes.txt | ||
./gradlew appDistributionToQaStageQa | ||
- name: Check status | ||
run: echo "Check build status and send status" | ||
- name: Set failed if build failed | ||
if: failure() | ||
run: | | ||
echo "::error::Build or send build stageQa to App Distribution failed" |