-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #48 from exdevutem/feat/orden-de-clases-y-widgets
- Loading branch information
Showing
226 changed files
with
8,764 additions
and
8,019 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
MI_UTEM_API_DEBUG=https://api-mi-utem.herokuapp.com/ | ||
MI_UTEM_API_DEBUG=https://api.exdev.cl |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"flutter": "3.7.12", | ||
"flavors": {} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
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 | base64 --decode > ios/fastlane/AuthKey.p8 | ||
echo $GOOGLE_SERVICE_INFO_PLIST > ios/Runner/GoogleService-Info.plist | ||
- name: Publicar Beta | ||
uses: maierj/[email protected] | ||
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 |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"dart.flutterSdkPath": ".fvm/versions/3.7.12" | ||
} |
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
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
Oops, something went wrong.