Skip to content

Commit

Permalink
specify frontend dir as a default dir for deploy action
Browse files Browse the repository at this point in the history
  • Loading branch information
tmcgroul committed Jul 24, 2023
1 parent 08d84cd commit edd43ed
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,17 @@ on:
env:
CI: true

defaults:
run:
working-directory: frontend

jobs:
deploy:
name: deploy
runs-on: ubuntu-latest
steps:
- name: Install dependencies
run: npm ci
working-directory: ./frontend

- name: Deploy
run: npm run deploy
working-directory: ./frontend

0 comments on commit edd43ed

Please sign in to comment.