Skip to content

Commit

Permalink
Enable more cd steps with new working dir
Browse files Browse the repository at this point in the history
  • Loading branch information
navzam committed Aug 16, 2024
1 parent effc88d commit 2a825df
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ jobs:
uses: actions/checkout@v4
with:
path: checkout-prefix
# - name: Install firebase-tools
# run: npm install -g firebase-tools
- name: Install firebase-tools
run: npm install -g firebase-tools
# - name: Authenticate to Google
# uses: 'google-github-actions/auth@v2'
# with:
Expand All @@ -45,14 +45,12 @@ jobs:
create_credentials_file: true
export_environment_variables: true
cleanup_credentials: true
- name: Output directory contents
run: ls
- name: Output cred env var
run: echo $GOOGLE_APPLICATION_CREDENTIALS
# - name: Install dependencies
# run: npm install
# - name: Build
# run: npm run build
- name: Install dependencies
run: npm install
working-directory: checkout-prefix
- name: Build
run: npm run build
working-directory: checkout-prefix
# - name: Deploy functions
# run: npm run deploy
# - name: Output firebase debug log
Expand Down

0 comments on commit 2a825df

Please sign in to comment.