-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Removed google-service-json and setup CI #1409
Conversation
changed google-service files to base64 format, as it suffer from formatting issue. Tested by: |
.github/workflows/android_build.yml
Outdated
- name: 📂 Set up DEV Google Services | ||
if: ${{ !startsWith(inputs.gradlew-command, 'false') }} | ||
uses: davidSchuppa/base64Secret-toFile-action@v3 | ||
with: | ||
secret: ${{ env.CI_DEVELOP_GOOGLE_SERVICES_FILE }} | ||
filename: google-services.json | ||
destination-path: ./app | ||
|
||
- name: 📂 Set up PROD Google Services | ||
if: ${{ !startsWith(inputs.gradlew-command, 'false') }} | ||
uses: davidSchuppa/base64Secret-toFile-action@v3 | ||
with: | ||
secret: ${{ env.CI_PRODUCTION_GOOGLE_SERVICES_FILE }} | ||
filename: google-services.json | ||
destination-path: ./app/src/release/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@valentunn The dev google-services I put to common folder (app/
) and for release build it should be overridden by app/src/release/
The workflow is fallen because the develop branch doesn't contain changes yet |
No description provided.