123456789101112131415161718192021 |
- name: Deploy to Live Channel
- on:
- push:
- branches:
- - main
- jobs:
- deploy_live_website:
- runs-on: ubuntu-latest
- steps:
- - name: Checkout Repository
- uses: actions/checkout@v3
- - name: Deploy to Firebase (production)
- uses: FirebaseExtended/action-hosting-deploy@v0
- with:
- repoToken: '${{ secrets.GITHUB_TOKEN }}'
- firebaseServiceAccount: '${{ secrets.FIREBASE_SERVICE_ACCOUNT_POSTWOMAN_API }}'
- channelId: live
- projectId: postwoman-api
|