WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Fix endDate optional without nullable #15

Fix endDate optional without nullable

Fix endDate optional without nullable #15

name: Deploy Firebase
on:
push:
branches:
- main
paths:
- 'workspaces/firebase-functions/**'
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20.18.1'
cache: 'yarn'
- name: Install dependencies
run: yarn
- name: Deploy Firebase Functions
run: yarn workspace @teimurjan/firebase-functions deploy
env:
FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }}