Add cd step to use node 20 #23
Workflow file for this run
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
name: Deploy to Google Cloud | |
on: | |
push: | |
branches: [cd] | |
jobs: | |
deploy: | |
name: Deploy | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
contents: read | |
steps: | |
# - name: Checkout actions-oidc-debugger | |
# uses: actions/checkout@v3 | |
# with: | |
# repository: github/actions-oidc-debugger | |
# ref: main | |
# # token: ${{ secrets.your-checkout-token }} | |
# path: ./.github/actions/actions-oidc-debugger | |
# - name: Debug OIDC Claims | |
# uses: ./.github/actions/actions-oidc-debugger | |
# with: | |
# audience: '${{ github.server_url }}/${{ github.repository_owner }}' | |
- name: Check out repo | |
uses: actions/checkout@v4 | |
with: | |
path: checkout-prefix | |
- name: Use Node.js 20.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20.x' | |
- name: Install firebase-tools | |
run: npm install -g firebase-tools | |
# - name: Authenticate to Google | |
# uses: 'google-github-actions/auth@v2' | |
# with: | |
# credentials_json: ${{ secrets.GCP_SA_KEY }} | |
# create_credentials_file: true | |
# export_environment_variables: true | |
# cleanup_credentials: true | |
- name: Authenticate to Google | |
uses: 'google-github-actions/auth@v2' | |
with: | |
workload_identity_provider: 'projects/705985154569/locations/global/workloadIdentityPools/kipr-github-identity-pool/providers/github' | |
project_id: 'kipr-321905' | |
service_account: 'simulator-cloud-functions-gith@kipr-321905.iam.gserviceaccount.com' | |
create_credentials_file: true | |
export_environment_variables: true | |
cleanup_credentials: true | |
- name: List firebase projects | |
run: firebase projects:list | |
- name: Output auth details | |
run: cat $GOOGLE_APPLICATION_CREDENTIALS | |
- name: Install dependencies | |
run: npm install | |
working-directory: checkout-prefix | |
- name: Build | |
run: npm run build | |
working-directory: checkout-prefix | |
# - name: Output directory | |
# run: ls | |
# - name: Output checkout directory | |
# run: ls checkout-prefix | |
- name: Deploy functions | |
run: npm run deploy | |
working-directory: checkout-prefix | |
- name: Output firebase debug log | |
if: always() | |
run: cat firebase-debug.log | |
working-directory: checkout-prefix |