refactor(amended gradle) #67
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
# If setting a specific version, wrap it with single quotes like '12.0' | |
# to pass it as string because GitHub trimmes trailing .0 from numbers | |
# due to https://github.com/actions/runner/issues/849 | |
name: build-and-ship-android | |
on: | |
push: | |
branches: | |
- 'main' | |
jobs: | |
build-and-ship-android: | |
runs-on: ubuntu-latest | |
env: | |
BUNDLE_GEMFILE: ${{ github.workspace }}/apps/skolplattformen-app-new/Gemfile | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
# changed this from GITHUB_PERSONAL_ACCESS_TOKEN_PATH to GITHUB_TOKEN | |
token: ${{ secrets.GITHUB_TOKEN }} | |
submodules: true | |
- name: Set up our JDK environment | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: 11 | |
- name: Setup Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '3.2.2' | |
bundler-cache: true | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18.13' | |
cache: 'npm' | |
cache-dependency-path: ${{ github.workspace }}/apps/skolplattformen-app-new/package-lock.json | |
- name: set npm version | |
run: npm install -g [email protected] && echo "secrets.GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }} secrets.GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }} workspace= ${{ github.workspace }} secrets.MAPS_API_KEY=${{secrets.MAPS_API_KEY}}" | |
- run: cd apps/skolplattformen-app-new/android && bundle install | |
- name: install node modules | |
run: cd apps/skolplattformen-app-new && npm ci | |
- name: Setup local.properties | |
run: echo "MAPS_API_KEY=${{ env.MAPS_API_KEY }}" > ${{ github.workspace }}/apps/skolplattformen-app-new/android/local.properties | |
env: | |
MAPS_API_KEY: ${{ secrets.MAPS_API_KEY }} | |
- name: Setup key.json | |
run: echo "${KEY_JSON}" > ${{ github.workspace }}/apps/skolplattformen-app-new/android/key.json | |
env: | |
KEY_JSON: ${{ secrets.KEY_JSON }} | |
- run: cd apps/skolplattformen-app-new/android && bundle exec fastlane android beta | |
env: | |
SIGNING_STORE_PASSWORD: ${{ secrets.SIGNING_STORE_PASSWORD }} | |
ALIAS_KEY_PASSWORD: ${{ secrets.ALIAS_KEY_PASSWORD }} | |
- name: 'Store artifact native_debug_symbols.zip' | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: native_debug_symbols.zip | |
path: ${{ github.workspace }}/apps/skolplattformen-app-new/android/native_debug_symbols.zip | |
retention-days: 5 | |
- name: 'Store build mappings for difficult crashlytics traces' | |
uses: actions/upload-artifact@v3 | |
if: ${{ success() }} | |
with: | |
name: mapping.txt | |
path: ${{ github.workspace }}/apps/skolplattformen-app-new/android/app/build/outputs/mapping/release/mapping.txt | |
retention-days: 500 |