Skip to content

Commit 8336744

Browse files
authored
Merge pull request #487 from nimblehq/release/4.6.0
Release - 4.6.0
2 parents d581dcc + 51f083c commit 8336744

File tree

12 files changed

+66
-2
lines changed

12 files changed

+66
-2
lines changed

.arkana.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
package_manager: cocoapods
2+
environments:
3+
- Staging
4+
- Release
5+
global_secrets:
6+
environment_secrets:

.env.example

Whitespace-only changes.

.github/workflows/automatic_pull_request_review.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ concurrency:
1111
jobs:
1212
review_pull_request:
1313
name: Pull request review by Danger
14-
runs-on: macOS-12
14+
runs-on: macOS-latest
1515
steps:
1616
- uses: actions/checkout@v3
1717
with:
@@ -25,8 +25,18 @@ jobs:
2525
restore-keys: |
2626
${{ runner.os }}-gems-
2727
28+
- name: Setup ENV file
29+
env:
30+
ENV: ${{ secrets.ENV }}
31+
run: |
32+
touch .env
33+
echo $ENV | base64 --decode > .env
34+
2835
- name: Bundle install
2936
run: bundle install --path vendor/bundle
37+
38+
- name: Run Arkana
39+
run: bundle exec arkana
3040

3141
- name: Cache Pods
3242
uses: actions/cache@v3

.github/workflows/deploy_app_store.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,18 @@ jobs:
4646
with:
4747
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
4848

49+
- name: Setup ENV file
50+
env:
51+
ENV: ${{ secrets.ENV }}
52+
run: |
53+
touch .env
54+
echo $ENV | base64 --decode > .env
55+
4956
- name: Bundle install
5057
run: bundle install
58+
59+
- name: Run Arkana
60+
run: bundle exec arkana
5161

5262
- name: Cache Pods
5363
uses: actions/cache@v3

.github/workflows/deploy_production_firebase.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,18 @@ jobs:
4343
with:
4444
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
4545

46+
- name: Setup ENV file
47+
env:
48+
ENV: ${{ secrets.ENV }}
49+
run: |
50+
touch .env
51+
echo $ENV | base64 --decode > .env
52+
4653
- name: Bundle install
4754
run: bundle install
55+
56+
- name: Run Arkana
57+
run: bundle exec arkana
4858

4959
- name: Cache Pods
5060
uses: actions/cache@v3

.github/workflows/deploy_staging_firebase.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,19 @@ jobs:
4848
yarn global add firebase-tools
4949
echo "$(yarn global bin)" >> $GITHUB_PATH
5050
51+
- name: Setup ENV file
52+
env:
53+
ENV: ${{ secrets.ENV }}
54+
run: |
55+
touch .env
56+
echo $ENV | base64 --decode > .env
57+
5158
- name: Bundle install
5259
# if: steps.bundleCache.outputs.cache-hit != 'true'
5360
run: bundle install
61+
62+
- name: Run Arkana
63+
run: bundle exec arkana
5464

5565
- name: Cache Pods
5666
uses: actions/cache@v2

.github/workflows/test_install_script.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ concurrency:
1111
jobs:
1212
Test:
1313
name: Test
14-
runs-on: macOS-12
14+
runs-on: macOS-latest
1515
steps:
1616
- uses: actions/checkout@v3
1717
with:

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,3 +78,9 @@ Output
7878
# JetBrains IDEs
7979

8080
.idea
81+
82+
# Arkana
83+
dependencies/
84+
85+
# Environment
86+
.env

Gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
source "https://rubygems.org"
22

3+
gem 'arkana'
34
gem "cocoapods"
45
gem "fastlane"
56
gem "xcov"

Podfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ target '{PROJECT_NAME}' do
3636
pod 'SwiftLint'
3737
pod 'Wormholy', :configurations => ['Debug Staging', 'Debug Production']
3838
pod 'xcbeautify'
39+
pod "ArkanaKeys", path: "./ArkanaKeys/ArkanaKeys"
40+
pod "ArkanaKeysInterfaces", path: "./ArkanaKeys/ArkanaKeysInterfaces"
3941

4042
target '{PROJECT_NAME}Tests' do
4143
inherit! :search_paths

0 commit comments

Comments
 (0)