Fix web working directory

This commit is contained in:
Fergal Moran
2023-03-06 07:35:09 +00:00
parent 257c773b94
commit 41246c89cc
2 changed files with 6 additions and 3 deletions

View File

@@ -11,8 +11,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- working-directory: web
- run: 'yarn build'
- run:
shell: 'yarn build'
working-directory: web
- uses: FirebaseExtended/action-hosting-deploy@v0
with:
repoToken: '${{ secrets.GITHUB_TOKEN }}'

View File

@@ -10,7 +10,9 @@ jobs:
steps:
- uses: actions/checkout@v2
- working-directory: web
- run: 'yarn build'
- run:
shell: 'yarn build'
working-directory: web
- uses: FirebaseExtended/action-hosting-deploy@v0
with:
repoToken: '${{ secrets.GITHUB_TOKEN }}'