Skip to content

Commit

Permalink
fix the correct workflow file this time
Browse files Browse the repository at this point in the history
  • Loading branch information
fostermh committed Dec 3, 2023
1 parent ec759e9 commit 29df730
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/firebase-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,9 @@ jobs:
- name: Checkout Repo
uses: actions/checkout@master
- name: Install Dependencies
env:
NODE_OPTIONS: --openssl-legacy-provider
run: npm ci
working-directory: firebase-functions
- name: Install Dependencies
env:
NODE_OPTIONS: --openssl-legacy-provider
run: npm ci
working-directory: firebase-functions/functions
- name: Deploy to Firebase
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/firebase-hosting-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,12 @@ jobs:
if: '${{ github.event.pull_request.head.repo.full_name == github.repository }}'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: npm ci && npm run build
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Install and Build 🔧
env:
NODE_OPTIONS: --openssl-legacy-provider
run: npm ci && npm run build
- uses: FirebaseExtended/action-hosting-deploy@v0
with:
repoToken: '${{ secrets.GITHUB_TOKEN }}'
Expand Down

0 comments on commit 29df730

Please sign in to comment.