Attempt Firebase auto deploy fix

Update GH actions to attempt fix for automatic Firebase deployment
This commit is contained in:
2021-09-01 18:21:40 +01:00
parent b378bd7a97
commit eba66090a2
2 changed files with 6 additions and 0 deletions

View File

@@ -11,7 +11,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: npm install
- run: npm run build
- run: cd functions && npm run build
- run: cd ..
- uses: FirebaseExtended/action-hosting-deploy@v0
with:
repoToken: '${{ secrets.GITHUB_TOKEN }}'

View File

@@ -9,7 +9,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: npm install
- run: npm run build
- run: cd functions && npm run build
- run: cd ..
- uses: FirebaseExtended/action-hosting-deploy@v0
with:
repoToken: '${{ secrets.GITHUB_TOKEN }}'