Fix `npm warn exec The following package was not found and will be in… #215
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 | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- '**/README.md' | |
- '**/LICENSE.txt' | |
- '**/.replit' | |
- '**/replit.nix' | |
concurrency: | |
group: 'deploy' | |
cancel-in-progress: true | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Set up PNPM | |
uses: pnpm/action-setup@v4 | |
with: | |
version: 9 | |
- name: Install Firebase CLI | |
run: pnpm install | |
- name: Deploy to Firebase | |
uses: FirebaseExtended/action-hosting-deploy@v0 | |
with: | |
repoToken: '${{ secrets.GITHUB_TOKEN }}' | |
firebaseServiceAccount: '${{ secrets.FIREBASE_SERVICE_ACCOUNT_TYLERGORDONHILL_C8339 }}' | |
projectId: tylergordonhill-c8339 | |
channelId: live |