Affichage des molécules unitairement et en mode fusion
This commit is contained in:
38
.github/workflows/build.yaml
vendored
38
.github/workflows/build.yaml
vendored
@ -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
|
Reference in New Issue
Block a user