forked from horizontalsystems/unstoppable-wallet-android
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0fea4ea
commit 417d64c
Showing
1 changed file
with
23 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,25 +8,25 @@ jobs: | |
debug_build: | ||
runs-on: [self-hosted, linux] | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
# - name: Checkout code | ||
# uses: actions/checkout@v3 | ||
# with: | ||
# fetch-depth: 0 | ||
|
||
- name: Setup Ruby | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: '3.1.2' | ||
bundler-cache: true | ||
# - name: Setup Ruby | ||
# uses: ruby/setup-ruby@v1 | ||
# with: | ||
# ruby-version: '3.1.2' | ||
# bundler-cache: true | ||
|
||
- name: Decode local properties | ||
id: localProperties | ||
uses: timheuer/[email protected] | ||
with: | ||
fileName: 'local.properties' | ||
encodedString: ${{ secrets.LOCAL_PROPERTIES }} | ||
# - name: Decode local properties | ||
# id: localProperties | ||
# uses: timheuer/[email protected] | ||
# with: | ||
# fileName: 'local.properties' | ||
# encodedString: ${{ secrets.LOCAL_PROPERTIES }} | ||
|
||
- run: cp "${{ steps.localProperties.outputs.filePath }}" "./" | ||
# - run: cp "${{ steps.localProperties.outputs.filePath }}" "./" | ||
|
||
- name: Decode service credentials file | ||
id: serviceCredentialsFile | ||
|
@@ -37,6 +37,10 @@ jobs: | |
|
||
- run: cp "${{ steps.serviceCredentialsFile.outputs.filePath }}" "./fastlane" | ||
|
||
- name: Print service credentials (dev) | ||
run: cat "./fastlane/service_credentials_file_dev.json" | ||
|
||
|
||
- name: Decode google-services json file | ||
id: googleServicesJsonFile | ||
uses: timheuer/[email protected] | ||
|
@@ -46,6 +50,9 @@ jobs: | |
|
||
- run: cp "${{ steps.googleServicesJsonFile.outputs.filePath }}" "./app/src/debug" | ||
|
||
- name: Print service credentials (dev) | ||
run: cat "./app/src/debug/google-services.json" | ||
|
||
- name: check googleServicesJsonFile exist | ||
run: ls -al "./app/src/debug" | ||
|
||
|