We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16ad0f1 commit a3c0b50Copy full SHA for a3c0b50
.github/workflows/pages.yml
@@ -57,3 +57,16 @@ jobs:
57
steps:
58
- id: deployment
59
uses: actions/deploy-pages@v4
60
+
61
+ deploy-firebase:
62
+ needs: build
63
+ runs-on: ubuntu-latest
64
+ steps:
65
+ - uses: actions/checkout@v4
66
+ - uses: actions/setup-node@v4
67
+ with:
68
+ node-version: '20'
69
+ - name: Install Firebase CLI
70
+ run: npm install -g firebase-tools
71
+ - name: Deploy to Firebase
72
+ run: firebase deploy --only hosting --token ${{ secrets.FIREBASE_SERVICE_ACCOUNT_DITECTREV_BLOG }}
0 commit comments