Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
amberin committed Oct 24, 2024
1 parent b90d7ed commit d979c94
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions .github/workflows/build-test-apk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,17 @@ jobs:
# F-Droid APK

- name: Assemble F-Droid APK
- name: Assemble unsigned F-Droid release APK
run: ./gradlew assembleFdroidRelease --stacktrace
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Store unsigned F-Droid release APK
uses: actions/upload-artifact@v4
with:
name: ${GITHUB_SHA}-fdroid-unsigned-release.apk
path: app/build/outputs/apk/fdroid/release/*.apk

# "Premium" APK

- name: Add Dropbox app identifier
Expand All @@ -50,10 +56,8 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

# Upload artifacts

- name: Upload artifacts and create Github pre-release draft
uses: softprops/action-gh-release@v1
- name: Store unsigned Premium release APK
uses: actions/upload-artifact@v4
with:
files: |
*.apk
name: ${GITHUB_SHA}-premium-unsigned-release.apk
path: app/build/outputs/apk/premium/release/*.apk

0 comments on commit d979c94

Please sign in to comment.