Skip to content

Commit

Permalink
Merge pull request #145 from brown-ccv/deploy-firebase
Browse files Browse the repository at this point in the history
Deploy firebase
  • Loading branch information
YUUU23 authored Jun 26, 2024
2 parents 13fddf1 + c15a964 commit b32ad90
Show file tree
Hide file tree
Showing 6 changed files with 66 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .firebaserc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"projects": {
"default": "ccv-honeycomb-docs"
}
}
20 changes: 20 additions & 0 deletions .github/workflows/firebase-hosting-merge.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# This file was auto-generated by the Firebase CLI
# https://github.com/firebase/firebase-tools

name: Deploy to Firebase Hosting on merge
on:
push:
branches:
- main
jobs:
build_and_deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npm ci && npm run build
- uses: FirebaseExtended/action-hosting-deploy@v0
with:
repoToken: ${{ secrets.GITHUB_TOKEN }}
firebaseServiceAccount: ${{ secrets.FIREBASE_SERVICE_ACCOUNT_CCV_HONEYCOMB_DOCS }}
channelId: live
projectId: ccv-honeycomb-docs
21 changes: 21 additions & 0 deletions .github/workflows/firebase-hosting-pull-request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# 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
permissions:
checks: write
contents: read
pull-requests: write
jobs:
build_and_preview:
if: ${{ github.event.pull_request.head.repo.full_name == github.repository }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npm ci && npm run build
- uses: FirebaseExtended/action-hosting-deploy@v0
with:
repoToken: ${{ secrets.GITHUB_TOKEN }}
firebaseServiceAccount: ${{ secrets.FIREBASE_SERVICE_ACCOUNT_CCV_HONEYCOMB_DOCS }}
projectId: ccv-honeycomb-docs
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
# Generated files
.docusaurus
.cache-loader
.cache
.firebase

# ENV
.env.local
Expand All @@ -21,3 +23,6 @@
# Misc
.DS_Store
.vscode

# Firebase
./firebase
7 changes: 5 additions & 2 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module.exports = {
tagline:
"A template for reproducible psychophysiological tasks for clinic, laboratory, and home use.",
url: "https://brown-ccv.github.io",
baseUrl: "/honeycomb-docs/",

This comment has been minimized.

Copy link
@eldu

eldu Jun 27, 2024

Contributor

I think we may need to bring this back.

See error
https://brown-ccv.github.io/honeycomb-docs/
Screenshot 2024-06-27 at 2 17 56 PM

This comment has been minimized.

Copy link
@eldu

eldu Jun 27, 2024

Contributor

nvm forget about me. I didn't realize we were doing the transition from docusaurus and such. Everything is fine!!

honeycomb.ccv.brown.edu

baseUrl: "/",
onBrokenLinks: "throw",
onBrokenMarkdownLinks: "warn",
favicon: "img/bee.svg",
Expand Down Expand Up @@ -103,7 +103,10 @@ module.exports = {
{
className: "code-block-delete-line",
line: "highlight-delete-next-line",
block: { start: "highlight-delete-start", end: "highlight-delete-end" },
block: {
start: "highlight-delete-start",
end: "highlight-delete-end",
},
},
],
},
Expand Down
10 changes: 10 additions & 0 deletions firebase.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"hosting": {
"public": "build",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
]
}
}

0 comments on commit b32ad90

Please sign in to comment.