-
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.
Merge pull request #8 from Nexters/feature/add-keystore
Feature/add keystore
- Loading branch information
Showing
3 changed files
with
42 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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: build-android-app | ||
on: | ||
push: | ||
branches: | ||
- master | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
runs-on: macos-latest | ||
environment: Android CI/CD | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Create LocalProperites | ||
env: | ||
CREDENTIAL_WEB_CLIENT_ID: ${{ secrets.CREDENTIAL_WEB_CLIENT_ID }} | ||
MISSION_MATE_BASE_URL: ${{ secrets.MISSION_MATE_BASE_URL }} | ||
run: | | ||
echo CREDENTIAL_WEB_CLIENT_ID=\"$CREDENTIAL_WEB_CLIENT_ID\" > ./local.properties | ||
echo MISSION_MATE_BASE_URL=\"$MISSION_MATE_BASE_URL\" >> ./local.properties | ||
- name: Generate Keystore file from Github Secrets | ||
env: | ||
KEYSTORE: ${{ secrets.KEYSTORE_BASE64 }} | ||
run: | | ||
echo "$KEYSTORE" > ./mission-mate-keystore.b64 | ||
base64 -d -i ./mission-mate-keystore.b64 > ./mission-mate-keystore.jks | ||
- name: Build with Gradle | ||
run: fastlane beta |
File renamed without changes.
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