File tree 3 files changed +27
-1
lines changed
3 files changed +27
-1
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"projects": {
3
- "default": "vue-fire-store"
3
+ "default": "vue-fire-store",
4
+ "docs": "vuefiredocs"
4
5
}
5
6
}
Original file line number Diff line number Diff line change
1
+ # From https://github.com/marketplace/actions/deploy-to-firebase-hosting
2
+
3
+ name : Deploy Docs
4
+
5
+ on :
6
+ push :
7
+ branches :
8
+ - main
9
+ paths :
10
+ - ' docs/**'
11
+
12
+ jobs :
13
+ deploy_live_website :
14
+ runs-on : ubuntu-latest
15
+ steps :
16
+ - uses : actions/checkout@v2
17
+ # Add any build steps here. For example:
18
+ - run : pnpm i && pnpm run docs:build
19
+ - uses : FirebaseExtended/action-hosting-deploy@v0
20
+ with :
21
+ repoToken : ' ${{ secrets.GITHUB_TOKEN }}'
22
+ firebaseServiceAccount : ' ${{ secrets.FIREBASE_SERVICE_ACCOUNT_VUEFIREDOCS }}'
23
+ projectId : vuefiredocs
24
+ channelId : live
Original file line number Diff line number Diff line change 11
11
roadmap.md
12
12
* -debug.log
13
13
docs /api
14
+ .firebase
You can’t perform that action at this time.
0 commit comments