Skip to content

e-younan is running CI/CD actions #27

e-younan is running CI/CD actions

e-younan is running CI/CD actions #27

Workflow file for this run

name: Update documentation website
run-name: ${{ github.actor }} is running CI/CD actions
on:
push:
branches: [main]
paths:
- 'docs/**'
jobs:
deploy-web-gcp:
name: Deploy web app to GCP
runs-on: ubuntu-latest
defaults:
run:
working-directory: docs
permissions:
contents: 'read'
id-token: 'write'
steps:
- id: Checkout
uses: actions/checkout@v3
- uses: actions/setup-node@v2
with:
node-version: 22.x
cache: yarn
cache-dependency-path: ./docs/yarn.lock
- id: 'auth'
uses: 'google-github-actions/auth@v1'
with:
credentials_json: '${{ secrets.GCP_SA_KEY }}'
- name: 'Set up Cloud SDK'
uses: 'google-github-actions/setup-gcloud@v1'
- name: 'Install dependencies'
run: yarn install --frozen-lockfile
- name: 'Build application'
run: 'yarn build'
- name: 'Set project ID'
run: 'gcloud config set project react-native-header'
- name: 'Deploy'
run: 'yarn deploy --service-account ${{ vars.GCP_SA_EMAIL }}'