Skip to content

Commit

Permalink
Merge pull request #6 from ErnestoMoraes/dev
Browse files Browse the repository at this point in the history
teste apk
  • Loading branch information
ErnestoMoraes committed Mar 14, 2023
2 parents 04f6392 + 04a85a3 commit be42da1
Showing 1 changed file with 22 additions and 2 deletions.
24 changes: 22 additions & 2 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,25 @@ jobs:
- name: Upload apk
uses: actions/upload-artifact@v3
with:
name: appbundle
path: build/app/outputs/bundle/release/app-release.apk
name: my apk
path: build/app/outputs/bundle/release/app-release.apk

email:
runs-on: ubuntu-latest
steps:
- name: Download APK Artifact
uses: actions/download-artifact@v2
with:
name: my apk
- name: Send Email with APK Attachment
uses: dawidd6/[email protected]
with:
server_address: smtp.gmail.com
server_port: 587
username: ${{ secrets.EMAIL_USERNAME }}
password: ${{ secrets.EMAIL_PASSWORD }}
subject: my apk
body: Please find attached the APK.
from: '[email protected]'
to: '[email protected]'
attachments: 'app-debug.apk'

0 comments on commit be42da1

Please sign in to comment.