Skip to content

Commit

Permalink
fix(CD): working dir
Browse files Browse the repository at this point in the history
  • Loading branch information
veryCrunchy committed Feb 22, 2024
1 parent 348ac0f commit 728b353
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/CD-beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ jobs:
working-directory: ./beta
steps:
- uses: actions/checkout@v4
with:
path: 'beta'
- uses: actions/setup-node@v4
with:
node-version: 20
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/CD-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,12 @@ jobs:
build:
runs-on: self-hosted
defaults:
run:
run:
working-directory: ./prod
steps:
- uses: actions/checkout@v4
with:
path: "prod"
- uses: actions/setup-node@v4
with:
node-version: 20
Expand Down

0 comments on commit 728b353

Please sign in to comment.