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 runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- working-directory: web - run:
- run: 'yarn build' shell: 'yarn build'
working-directory: web
- uses: FirebaseExtended/action-hosting-deploy@v0 - uses: FirebaseExtended/action-hosting-deploy@v0
with: with:
repoToken: '${{ secrets.GITHUB_TOKEN }}' repoToken: '${{ secrets.GITHUB_TOKEN }}'

View File

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