Skip to content

Commit

Permalink
Execute firebase deploy within /servers/firebase
Browse files Browse the repository at this point in the history
  • Loading branch information
somejeff committed Oct 22, 2023
1 parent c2855b4 commit 03a7f55
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/firebase-hosting-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: npm ci && npm run build
- name: Change Directory to /servers/firebase
run: cd /servers/firebase
- name: Building Quasar
run: npm ci && npm run build
env:
VUE_APP_FIREBASE_API_KEY: ${{ secrets.VUE_APP_FIREBASE_API_KEY }}
- uses: FirebaseExtended/action-hosting-deploy@v0
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/firebase-hosting-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Change Directory to /servers/firebase
run: cd /servers/firebase
- name: Building Quasar
run: npm ci && npm run build
- run: npm ci && npm run build
env:
VUE_APP_FIREBASE_API_KEY: ${{ secrets.VUE_APP_FIREBASE_API_KEY }}
Expand Down

0 comments on commit 03a7f55

Please sign in to comment.