feat: orden de clases, widgets y nuevas funciones #23
Workflow file for this run
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
name: Publicar Aplicación Beta | |
on: | |
pull_request: | |
types: [opened, reopened, synchronize, closed] | |
jobs: | |
build: | |
# Formato de comentario: /deploy-beta | |
if: | | |
github.event.pull_request.author_association == 'MEMBER' && | |
(github.event.pull_request.state == 'open' && !github.event.pull_request.draft) && | |
(!github.event.pull_request.locked && !github.event.pull_request.active_lock_reason) && | |
(!github.event.pull_request.merged_at) | |
runs-on: macos-latest | |
environment: development | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.ref }} | |
- name: Instalar Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '3.3.0' | |
bundler-cache: true | |
- name: Instalar Java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: '17' | |
cache: 'gradle' | |
- name: Instalar Flutter | |
uses: flutter-actions/setup-flutter@v3 | |
with: | |
channel: stable | |
version: 3.7.12 | |
cache: true | |
cache-sdk: true | |
cache-key: mi-utem | |
- name: Instalar Dependencias | |
run: flutter pub get | |
- name: Copiar .env | |
run: cp .env.example .env | |
- name: Generar Archivos | |
env: | |
GOOGLE_SERVICES: ${{ secrets.GOOGLE_SERVICES }} | |
API_PLAY_STORE: ${{ secrets.API_PLAY_STORE }} | |
KEYSTORE_PROPERTIES: ${{ secrets.KEYSTORE_PROPERTIES }} | |
KEYSTORE_FILE: ${{ secrets.KEYSTORE_FILE }} | |
APP_STORE_CONNECT_AUTHKEY: ${{ secrets.APP_STORE_CONNECT_AUTHKEY }} | |
GOOGLE_SERVICE_INFO_PLIST: ${{ secrets.GOOGLE_SERVICE_INFO_PLIST }} | |
run: | | |
echo $GOOGLE_SERVICES | base64 --decode > android/app/google-services.json | |
echo $API_PLAY_STORE | base64 --decode > android/api-playstore.json | |
mkdir -p android/keystores | |
chmod 755 android/keystores | |
echo $KEYSTORE_PROPERTIES | base64 --decode > android/keystores/key.properties | |
echo $KEYSTORE_FILE | base64 --decode > android/keystores/keystore.jks | |
chmod 644 android/keystores/key* | |
echo $APP_STORE_CONNECT_AUTHKEY > ios/fastlane/AuthKey.p8 | |
echo $GOOGLE_SERVICE_INFO_PLIST > ios/Runner/GoogleService-Info.plist | |
- name: Publicar Beta | |
uses: maierj/fastlane-action@v3.1.0 | |
env: | |
APP_IDENTIFIER_IOS: ${{ secrets.APP_IDENTIFIER_IOS }} | |
APP_IDENTIFIER_ANDROID: ${{ secrets.APP_IDENTIFIER_ANDROID }} | |
SLACK_URL: ${{ secrets.SLACK_URL }} | |
APPLE_ID: ${{ secrets.APPLE_ID }} | |
FASTLANE_USER: ${{ secrets.FASTLANE_USER }} | |
FASTLANE_PASSWORD: ${{ secrets.FASTLANE_PASSWORD }} | |
FASTLANE_ITC_TEAM_ID: ${{ secrets.FASTLANE_ITC_TEAM_ID }} | |
FASTLANE_TEAM_ID: ${{ secrets.FASTLANE_TEAM_ID }} | |
FASTLANE_APPLE_APPLICATION_SPECIFIC_PASSWORD: ${{ secrets.FASTLANE_APPLE_APPLICATION_SPECIFIC_PASSWORD }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
MATCH_REPO_GIT_URL: ${{ secrets.MATCH_REPO_GIT_URL }} | |
MATCH_GIT_BASIC_AUTHORIZATION: ${{ secrets.MATCH_GIT_BASIC_AUTHORIZATION }} | |
MATCH_KEYCHAIN_PASSWORD: ${{ secrets.MATCH_KEYCHAIN_PASSWORD }} | |
MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }} | |
KEYCHAIN_NAME: ${{ secrets.KEYCHAIN_NAME }} | |
KEYCHAIN_PASSWORD: ${{ secrets.KEYCHAIN_PASSWORD }} | |
FASTLANE_SESSION: ${{ secrets.FASTLANE_SESSION }} | |
APP_STORE_CONNECT_API_KEY_ID: ${{ secrets.APP_STORE_CONNECT_API_KEY_ID }} | |
APP_STORE_CONNECT_ISSUER_ID: ${{ secrets.APP_STORE_CONNECT_ISSUER_ID }} | |
with: | |
lane: 'upload' | |
options: '{ "type": "beta", "skip_git_push": "true", "skip_slack": "true", "is_ci": "true" }' | |
- name: Publicar Version en Git | |
run: | | |
git config user.name "github-actions[bot]" | |
git config user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
git add pubspec.yaml | |
git commit -m "ci(bump-version): github action bump version" | |
git push |