Skip to content

Commit

Permalink
chore: action
Browse files Browse the repository at this point in the history
  • Loading branch information
farfromrefug committed Oct 10, 2024
1 parent 1b6a0cf commit c27e36a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,11 @@ jobs:
- uses: oNaiPs/secrets-to-env-action@v1
with:
secrets: ${{ toJSON(secrets) }}

- name: Decode Keystore
run: |
echo $KEYSTORE_BASE64 > keystore-b64.txt
base64 -d keystore-b64.txt > $KEYSTORE_PATH
- name: Install NativeScript
run: |
Expand Down
6 changes: 5 additions & 1 deletion fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,11 @@ platform :android do
end
else
# for now we build sentry releases for playstore to get bug reports
sh("npm", "run", "build.android.production.sentry")
if (options[:sentry])
sh("npm", "run", "build.android.production.sentry")
else
sh("npm", "run", "build.android.production")
end
end
end

Expand Down

0 comments on commit c27e36a

Please sign in to comment.