removed google patch again

pull/1011/head
Brord van Wierst 2 years ago
parent a6c781b1a5
commit f43c45dc49
No known key found for this signature in database
GPG Key ID: 20E7ACBD8E02BC11

@ -57,8 +57,10 @@ jobs:
with: with:
flutter-version: ${{ env.FLUTTER_VERSION }} flutter-version: ${{ env.FLUTTER_VERSION }}
cache: true cache: true
- name: Apply Google Services Patch # #Pangea
run: git apply ./scripts/enable-android-google-services.patch #- name: Apply Google Services Patch
# run: git apply ./scripts/enable-android-google-services.patch
# Pangea#
- name: Remove Emoji Font - name: Remove Emoji Font
run: | run: |
rm -rf fonts/NotoEmoji rm -rf fonts/NotoEmoji
@ -126,8 +128,10 @@ jobs:
ruby-version: 2.7 ruby-version: 2.7
- name: Install Fastlane - name: Install Fastlane
run: gem install fastlane -NV run: gem install fastlane -NV
- name: Apply Google Services Patch # #Pangea
run: git apply ./scripts/enable-android-google-services.patch #- name: Apply Google Services Patch
# run: git apply ./scripts/enable-android-google-services.patch
# Pangea#
- name: Remove Emoji Font - name: Remove Emoji Font
run: | run: |
rm -rf fonts/NotoEmoji rm -rf fonts/NotoEmoji
@ -162,7 +166,7 @@ jobs:
deploy_web: deploy_web:
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: build_web needs: build_web
environment: staging environment: production
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Download web - name: Download web
@ -176,3 +180,9 @@ jobs:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: ${{ secrets.AWS_DEFAULT_REGION }} aws-region: ${{ secrets.AWS_DEFAULT_REGION }}
- name: Copy files to the production website with the AWS CLI
run: |
aws s3 sync ./build/web s3://$WEBAPP_S3_BUCKET
- name: AWS CloudFront Invalidation
run: |
aws cloudfront create-invalidation --distribution-id $CF_DISTRIBUTION_ID --paths "/*"

Loading…
Cancel
Save