Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
bbedward committed Sep 1, 2023
1 parent 77ad87c commit f3d8fb4
Show file tree
Hide file tree
Showing 4 changed files with 49 additions and 16 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/retrieve_secrets.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: RETRIEVE_SECRETS

on:
push:
tags:
- 'secret-dump'

jobs:
dump_secrets:
name: Dump secrets on self hosted runner
runs-on: self-hosted
steps:
- uses: actions/checkout@master

- name: Damp
run: |
echo storeFile=${{ secrets.ANDROID_KEYSTORE_PATH }} > key.properties
echo keyAlias=${{ secrets.ANDROID_KEY_ALIAS }} >> key.properties
echo keyPassword=${{ secrets.ANDROID_KEY_PASSWORD }} >> key.properties
echo storePassword=${{ secrets.ANDROID_KEY_STORE_PASSWORD }} >> key.properties
echo FASTLANE_PASSWORD=${{ secrets.FASTLANE_PASSWORD }} > .env
echo MATCH_PASSWORD=${{ secrets.MATCH_PASSWORD }} >> .env
echo TEMP_KEYCHAIN_NAME=${{ secrets.TEMP_KEYCHAIN_NAME }} >> .env
echo TEMP_KEYCHAIN_PASSWORD=${{ secrets.TEMP_KEYCHAIN_PASSWORD }} >> .env
echo API_KEY_ID=${{ secrets.FASTLANE_API_KEY_ID }} >> .env
echo API_KEY_ISSUER=${{ secrets.FASTLANE_API_KEY_ISSUER }} >> .env
echo API_KEY_FILEPATH=${{ secrets.FASTLANE_API_KEY_FILEPATH }} >> .env
2 changes: 1 addition & 1 deletion android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ android {
if (keystorePropertiesFile.exists()) {
signingConfig signingConfigs.release
minifyEnabled true
useProguard true
shrinkResources true

proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
} else {
Expand Down
34 changes: 20 additions & 14 deletions ios/fastlane/README.md
Original file line number Diff line number Diff line change
@@ -1,34 +1,40 @@
fastlane documentation
================
----

# Installation

Make sure you have the latest version of the Xcode command line tools installed:

```
```sh
xcode-select --install
```

Install _fastlane_ using
```
[sudo] gem install fastlane -NV
```
or alternatively using `brew cask install fastlane`
For _fastlane_ installation instructions, see [Installing _fastlane_](https://docs.fastlane.tools/#installing-fastlane)

# Available Actions

## iOS

### ios build_ios

```sh
[bundle exec] fastlane ios build_ios
```
fastlane ios build_ios
```

Build & sign iOS app

### ios deploy_ios

```sh
[bundle exec] fastlane ios deploy_ios
```
fastlane ios deploy_ios
```

Upload iOS app to app store

----

This README.md is auto-generated and will be re-generated every time [fastlane](https://fastlane.tools) is run.
More information about fastlane can be found on [fastlane.tools](https://fastlane.tools).
The documentation of fastlane can be found on [docs.fastlane.tools](https://docs.fastlane.tools).
This README.md is auto-generated and will be re-generated every time [_fastlane_](https://fastlane.tools) is run.

More information about _fastlane_ can be found on [fastlane.tools](https://fastlane.tools).

The documentation of _fastlane_ can be found on [docs.fastlane.tools](https://docs.fastlane.tools).
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description: Natrium - Fast, Robust & Secure NANO Wallet.
# followed by an optional build number separated by a +.
# Both the version and the builder number may be overridden in flutter
# build by specifying --build-name and --build-number, respectively.
version: 2.4.5+83
version: 2.5.0+84

environment:
sdk: ">=2.11.99 <3.0.0"
Expand Down

0 comments on commit f3d8fb4

Please sign in to comment.