Affichage des molécules unitairement et en mode fusion
Some checks failed
Actions 😎 / Build my project ✨ (push) Failing after 1m21s
Actions 😎 / Release to the Google Play Store (push) Has been skipped

This commit is contained in:
2024-01-11 11:26:53 +01:00
parent 84136dcc5c
commit afa265dd31
18 changed files with 777 additions and 18 deletions

View File

@ -49,5 +49,39 @@ jobs:
# Output
- uses: actions/upload-artifact@v3
with:
name: Build
path: build
name: build-Android
path: build
releaseToGooglePlay:
name: Release to the Google Play Store
runs-on: ubuntu-latest
needs: build
env:
GOOGLE_PLAY_KEY_FILE: ${{ secrets.GOOGLE_PLAY_KEY_FILE }}
GOOGLE_PLAY_KEY_FILE_PATH:
${{ format('{0}/fastlane/google-fastlane.json', github.workspace) }}
ANDROID_BUILD_FILE_PATH: ${{ format('{0}/build/Android/Android.aab', github.workspace) }}
ANDROID_PACKAGE_NAME: ${{ secrets.ANDROID_PACKAGE_NAME }}
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Download Android Artifact
uses: actions/download-artifact@v3
with:
name: build-Android
path: build
- name: Add Authentication
run: echo "$GOOGLE_PLAY_KEY_FILE" > $GOOGLE_PLAY_KEY_FILE_PATH
- name: Set up Fastlane
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2
bundler-cache: true
- name: Upload to Google Play Internal
uses: maierj/fastlane-action@v3.0.0
with:
lane: 'android internal' # Change to upload to a different lane
- name: Cleanup to avoid storage limit
if: always()
uses: geekyeggo/delete-artifact@v2
with:
name: build-Android