Skip to content

Commit

Permalink
Update debug.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
cesarwillymc committed Jan 19, 2024
1 parent 4f83615 commit 8bf1fa0
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/debug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,12 +97,15 @@ jobs:
- name: Set RELEASE_NOTE
id: set_release_note
run: |
echo "RELEASE_NOTE={$(cat release_notes.txt)} >> $GITHUB_ENV
RELEASE_NOTE=$(cat release_notes.txt)
echo "RELEASE_NOTE_TEXT<<EOF" >> $GITHUB_ENV
echo $RELEASE_NOTE >> $GITHUB_ENV
echo "EOF" >> $GITHUB_ENV
# - name: Execute validations
# run: ./gradlew executeValidations
- name: Debug RELEASE_NOTE
run: |
echo "RELEASE_NOTE: $RELEASE_NOTE"
echo "RELEASE_NOTE: $RELEASE_NOTE_TEXT"
- name: Build App
run: ./gradlew assemble${BUILD_TYPE^}
env:
Expand All @@ -113,7 +116,7 @@ jobs:
appId: $APP_ID
serviceCredentialsFileContent: ${{ secrets.FIREBASE_TOKEN }}
groups: ${{ inputs.groupTester || 'qa' }}
releaseNotesFile: $RELEASE_NOTE
releaseNotesFile: $RELEASE_NOTE_TEXT
file: app/build/outputs/apk/${{ inputs.buildType || 'debug' }}/app-${{ inputs.buildType || 'debug' }}.apk
- name: Upload APK artifact
uses: actions/upload-artifact@v2
Expand Down

0 comments on commit 8bf1fa0

Please sign in to comment.