Skip to content

Commit

Permalink
feat: add deployment step to Firebase in frontend push workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
abhixsh committed Nov 23, 2024
1 parent e789342 commit 1fdd8a0
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/frontend-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
- master

jobs:
test:
Deploy:
runs-on: ubuntu-latest
steps:
- name: Get code
Expand All @@ -25,5 +25,10 @@ jobs:

- name: Check files in public
run: ls public


- name: Install Firebase CLI
run: npm install -g firebase-tools

- name: Deploy to Firebase
run: firebase deploy --token ${{ secrets.FIREBASE_TOKEN }}

0 comments on commit 1fdd8a0

Please sign in to comment.