Skip to content

Commit

Permalink
Update release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelbel authored Feb 22, 2024
1 parent f632762 commit 84eef0c
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,24 @@ jobs:

steps:
- uses: actions/checkout@v2

- name: Build GMS Release Artifacts
run: ./gradlew assembleGmsRelease

- name: Build HMS Release Artifacts
run: ./gradlew assembleHmsRelease

- name: Build FOSS Release Artifacts
run: ./gradlew assembleFossRelease

- name: Upload Artifacts to Outputs
uses: actions/upload-artifact@v2
with:
path: |
app/build/outputs/apk
- uses: ncipollo/release-action@v1
with:
artifacts: "release.tar.gz,foo/*.txt"
artifacts: "release.tar.gz,foo/*.txt,android-app/build/outputs/apk/**/*.apk"
artifactErrorsFailBuild: false
generateReleaseNotes: true
generateReleaseNotes: true

0 comments on commit 84eef0c

Please sign in to comment.