Skip to content

Commit

Permalink
gh-action: unzip looks for .zip ext
Browse files Browse the repository at this point in the history
  • Loading branch information
ignoramous authored Jun 1, 2024
1 parent 628aafd commit d0e398f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/sym.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: ⚛️ Native Sym

on:
push:
tags:
- "v*"
#push:
#tags:
#- "v*"
# docs.github.com/en/actions/managing-workflow-runs/manually-running-a-workflow
# docs.github.com/en/actions/learn-github-actions/events-that-trigger-workflows#workflow_dispatch
# docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions#onworkflow_dispatchinputs
Expand Down Expand Up @@ -41,8 +41,8 @@ jobs:
run: |
# wget opts: superuser.com/a/689340
wgetopts="--tries=3 --retry-on-http-error=404 --waitretry=3 --no-dns-cache"
wget $wgetopts "https://jitpack.com/com/github/celzero/firestack/${COMMIT:0:10}/firestack-${COMMIT:0:10}-debug.aar" -O "firestack.aar"
unzip firestack.aar
wget $wgetopts "https://jitpack.com/com/github/celzero/firestack/${COMMIT:0:10}/firestack-${COMMIT:0:10}-debug.aar" -O "firestack.zip"
unzip firestack.zip
firebase crashlytics:symbols:upload --app=${{ secrets.FIREBASE_APP_ID_ANDROID }} ./jni/
shell: bash
env:
Expand Down

1 comment on commit d0e398f

@ignoramous
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.