Deploy to Firebase Hosting on merge, content update and schedule #27591
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This file was auto-generated by the Firebase CLI | |
# https://github.com/firebase/firebase-tools | |
name: Deploy to Firebase Hosting on merge, content update and schedule | |
'on': | |
push: | |
branches: | |
- main | |
repository_dispatch: | |
types: [created] | |
schedule: | |
# Deploy every hour | |
- cron: '0 * * * *' | |
# deploy manually | |
workflow_dispatch: | |
jobs: | |
build_and_deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: 'yarn' | |
- name: Caching Gatsby | |
id: gatsby-cache-build | |
uses: actions/cache@v2 | |
with: | |
path: | | |
public | |
.cache | |
key: ${{ runner.os }}-gatsby-build-${{ github.run_id }} | |
restore-keys: | | |
${{ runner.os }}-gatsby-build- | |
- name: Yarn install | |
run: 'yarn install --frozen-lockfile' | |
- name: Build | |
run: yarn build | |
env: | |
STRAPI_API_URL: '${{ secrets.STRAPI_API_URL }}' | |
STRAPI_TOKEN: '${{ secrets.STRAPI_TOKEN }}' | |
- uses: FirebaseExtended/action-hosting-deploy@v0 | |
with: | |
repoToken: '${{ secrets.GITHUB_TOKEN }}' | |
firebaseServiceAccount: '${{ secrets.FIREBASE_SERVICE_ACCOUNT_CA_IT_PROD_HOME_5918 }}' | |
channelId: live | |
projectId: ca-it-prod-home-5918 |