-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (37 loc) · 1.68 KB
/
firebase-hosting-pull-request.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# This file was auto-generated by the Firebase CLI
# https://github.com/firebase/firebase-tools
name: Deploy to Firebase Hosting on PR
"on": pull_request
jobs:
build_and_preview:
if: "${{ github.event.pull_request.head.repo.full_name == github.repository }}"
runs-on: ubuntu-latest
steps:
- name: 📥 Checkout repo
uses: actions/checkout@v3
- name: 🛠️ Setup Flutter
id: flutter-action
uses: subosito/[email protected]
with:
channel: stable
- name: 🕸️ Flutter build for web
run: |
flutter pub get
flutter build web
- name: 🚀 Deploy to Firebase Hosting
id: firebase_deploy
uses: FirebaseExtended/action-hosting-deploy@v0
with:
repoToken: "${{ secrets.GITHUB_TOKEN }}"
firebaseServiceAccount: "${{ secrets.FIREBASE_SERVICE_ACCOUNT_FL_CHATGPT }}"
projectId: fl-chatgpt
- name: 📝 Write job summary
run: |
echo "# :rocket: Successfully deployed Web to Firebase" >> $GITHUB_STEP_SUMMARY
echo "The job was automatically triggered by a ${{ github.event_name }} event." >> $GITHUB_STEP_SUMMARY
echo "" >> $GITHUB_STEP_SUMMARY
echo ":blue_heart: Using **Flutter ${{ steps.flutter-action.outputs.CHANNEL }}**" >> $GITHUB_STEP_SUMMARY
echo ":blue_heart: Version ${{ steps.flutter-action.outputs.VERSION }}" >> $GITHUB_STEP_SUMMARY
echo "" >> $GITHUB_STEP_SUMMARY
echo ":link: URLs: ${{ steps.firebase_deploy.outputs.urls }}" >> $GITHUB_STEP_SUMMARY
echo ":link: Expired on: ${{ steps.firebase_deploy.outputs.expire_time }}" >> $GITHUB_STEP_SUMMARY