Skip to content

Commit d932b1f

Browse files
authored
Upload symbols zip and example app to GitHub release (#77)
1 parent b361027 commit d932b1f

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

.github/workflows/uploadArchives.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,15 @@ jobs:
3939
run: chmod +x gradlew
4040

4141
- name: Upload archives
42-
run: ./gradlew publish
42+
run: ./gradlew build publish
4343
env:
4444
ORG_GRADLE_PROJECT_signingKey: ${{ secrets.ASCII_ARMORED_GPG_KEY }} # ASCII-armored GPG key
4545
ORG_GRADLE_PROJECT_signingPassword: "" # Using empty password for GPG key
4646

47-
- name: Upload symbols.zip
48-
uses: actions/upload-artifact@v3
47+
- uses: xresloader/upload-to-github-release@v1
48+
env:
49+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4950
with:
50-
name: native-debug-symbols.zip
51-
path: example-app/build/outputs/native-debug-symbols/release/native-debug-symbols.zip
51+
file: "example-app/build/outputs/native-debug-symbols/release/native-debug-symbols.zip;example-app/build/outputs/apk/debug/example-app-debug.apk"
52+
draft: true
53+
verbose: env.ACTIONS_STEP_DEBUG

0 commit comments

Comments
 (0)