Skip to content

Commit

Permalink
ci(github): specify working-directory
Browse files Browse the repository at this point in the history
  • Loading branch information
kubosho committed Nov 10, 2024
1 parent af78c78 commit 844801d
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ on:
jobs:
check:
runs-on: ubuntu-latest
defaults:
run:
working-directory: client

steps:
- uses: actions/checkout@v4
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ on:
jobs:
lint:
runs-on: ubuntu-latest
defaults:
run:
working-directory: client

steps:
- uses: actions/checkout@v4
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ on:
jobs:
release:
runs-on: ubuntu-latest
defaults:
run:
working-directory: client

steps:
- uses: actions/checkout@v4
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ env:
jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: client

steps:
- uses: actions/checkout@v4
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/upload_og_image_to_s3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ name: Upload og:image to S3
on:
push:
branches: [main]
paths:
- client/public/assets/images/og/**

env:
AWS_BUCKET_NAME: ${{ secrets.AWS_BUCKET_NAME }}
Expand All @@ -14,6 +16,9 @@ permissions:
jobs:
upload:
runs-on: ubuntu-latest
defaults:
run:
working-directory: client

steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 844801d

Please sign in to comment.