fix: player streak bugs #183
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: Production Workflow | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
env: | |
flutter_version: "3.16.6" | |
jobs: | |
build-apk: | |
name: "build apk 🔨" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Configure AWS Credentials | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
aws-access-key-id: ${{ secrets.PE_PRIVATE_AWS_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.PE_PRIVATE_AWS_SECRET_ACCESS_KEY }} | |
aws-region: ${{ secrets.PE_AWS_REGION }} | |
- name: Download credential files | |
run: | | |
aws s3 cp s3://${{ secrets.PE_PRIVATE_AWS_S3_BUCKET_NAME }}/credentials/client/paladins-edge-prod.env ./paladins-edge.env | |
aws s3 cp s3://${{ secrets.PE_PRIVATE_AWS_S3_BUCKET_NAME }}/credentials/client/google-services.json ./android/app/ | |
aws s3 cp s3://${{ secrets.PE_PRIVATE_AWS_S3_BUCKET_NAME }}/credentials/client/upload-keystore.jks ./android/app/ | |
aws s3 cp s3://${{ secrets.PE_PRIVATE_AWS_S3_BUCKET_NAME }}/credentials/client/key.properties ./android/ | |
- name: Including Paladins Assets in this build | |
run: | | |
aws s3 sync s3://${{ secrets.PE_PRIVATE_AWS_S3_BUCKET_NAME }}/paladins_assets/ ./paladins_assets/ | |
rm pubspec.yaml | |
mv pubspec.assets.yaml pubspec.yaml | |
- name: Install Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
channel: "stable" | |
flutter-version: ${{ env.flutter_version }} | |
- name: Get dependencies | |
run: flutter pub get | |
- name: Flutter version | |
run: flutter --version | |
- name: Build apk | |
run: flutter build apk --release --build-number=${{ github.run_number }} | |
# Run below tasks only if its a push | |
- name: Get flutter version | |
if: ${{ github.event_name == 'push' }} | |
id: flutter_version | |
uses: NiklasLehnfeld/flutter-version-number-action@main | |
with: | |
file-path: ./pubspec.yaml | |
- name: Bump version and push tag | |
if: ${{ github.event_name == 'push' }} | |
id: tag_version | |
uses: mathieudutour/[email protected] | |
with: | |
custom_tag: ${{ steps.flutter_version.outputs.version-number }} | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Create a GitHub release | |
if: ${{ github.event_name == 'push' }} | |
uses: ncipollo/release-action@v1 | |
with: | |
tag: ${{ steps.tag_version.outputs.new_tag }} | |
name: Release ${{ steps.tag_version.outputs.new_tag }} | |
body: ${{ steps.tag_version.outputs.changelog }} | |
artifacts: "./build/app/outputs/flutter-apk/app-release.apk" | |
build-bundle: | |
name: "build bundle 🛠️" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Configure AWS Credentials | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
aws-access-key-id: ${{ secrets.PE_PRIVATE_AWS_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.PE_PRIVATE_AWS_SECRET_ACCESS_KEY }} | |
aws-region: ${{ secrets.PE_AWS_REGION }} | |
- name: Download credential files | |
run: | | |
aws s3 cp s3://${{ secrets.PE_PRIVATE_AWS_S3_BUCKET_NAME }}/credentials/client/paladins-edge-prod.env ./paladins-edge.env | |
aws s3 cp s3://${{ secrets.PE_PRIVATE_AWS_S3_BUCKET_NAME }}/credentials/client/google-services.json ./android/app/ | |
aws s3 cp s3://${{ secrets.PE_PRIVATE_AWS_S3_BUCKET_NAME }}/credentials/client/upload-keystore.jks ./android/app/ | |
aws s3 cp s3://${{ secrets.PE_PRIVATE_AWS_S3_BUCKET_NAME }}/credentials/client/key.properties ./android/ | |
- name: Including Paladins Assets in this build | |
run: | | |
aws s3 sync s3://${{ secrets.PE_PRIVATE_AWS_S3_BUCKET_NAME }}/paladins_assets/ ./paladins_assets/ | |
rm pubspec.yaml | |
mv pubspec.assets.yaml pubspec.yaml | |
- name: Install Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
channel: "stable" | |
flutter-version: ${{ env.flutter_version }} | |
- name: Setup properties | |
run: | | |
cat >> "./android/key.properties" <<EOF | |
storePassword=${{ secrets.FCI_KEYSTORE_PASSWORD }} | |
keyPassword=${{ secrets.FCI_KEY_PASSWORD }} | |
keyAlias=${{ secrets.FCI_KEY_ALIAS }} | |
storeFile=upload-keystore.jks | |
EOF | |
- name: Get dependencies | |
run: flutter pub get | |
- name: Flutter version | |
run: flutter --version | |
- name: Build bundle | |
run: flutter build appbundle --release --build-number=${{ github.run_number }} | |
# Run the below tasks only if its a push | |
- name: Get release notes | |
if: ${{ github.event_name == 'push' }} | |
run: git log -1 --pretty="PRODUCTION BUILD - Commit %h%n- Date %cs%n- %s" > release_notes.txt | |
- name: Upload bundle to app distribution | |
if: ${{ github.event_name == 'push' }} | |
uses: wzieba/[email protected] | |
with: | |
appId: 1:280154424805:android:06755c7776c617c0aa1b0c | |
serviceCredentialsFileContent: ${{ secrets.CREDENTIAL_FILE_CONTENT }} | |
groups: Developers | |
releaseNotesFile: ./release_notes.txt | |
file: ./build/app/outputs/bundle/release/app-release.aab |