-
-
Notifications
You must be signed in to change notification settings - Fork 51
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
52322ac
commit 287cf10
Showing
2 changed files
with
24 additions
and
4 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 |
---|---|---|
|
@@ -200,6 +200,26 @@ jobs: | |
- name: Grant execute permission for gradlew | ||
run: chmod +x gradlew | ||
|
||
# Here we need to decode keystore.jks from base64 string and place it | ||
# in the folder specified in the release signing configuration | ||
- name: Decode Keystore | ||
id: decode_keystore | ||
uses: timheuer/[email protected] | ||
with: | ||
fileName: ${{ env.KEY_STORE_FILE }} | ||
fileDir: ${{ env.KEY_STORE_LOCATION }} | ||
encodedString: ${{ secrets.KEYSTORE }} | ||
|
||
# create keystore path for gradle to read | ||
- name: Create keystore path env var | ||
run: | | ||
store_path=${{ env.KEY_STORE_LOCATION }}${{ env.KEY_STORE_FILE }} | ||
echo "KEY_STORE_PATH=$store_path" >> $GITHUB_ENV | ||
- name: Create service_account.json | ||
id: createServiceAccount | ||
run: echo '${{ secrets.SERVICE_ACCOUNT_JSON }}' > service_account.json | ||
|
||
- name: Deploy with fastlane | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
|
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