Skip to content

Commit

Permalink
Fix working directory in CI/CD web release
Browse files Browse the repository at this point in the history
This commit fixes the CI/CD website release process which was failing
due to an incorrect working directory setting. The `working-directory`
is now correctly set within the action workflow, ensuring the `npm run
install-deps` command runs in project root directory where
`package.json` exists.
  • Loading branch information
undergroundwires committed Oct 10, 2023
1 parent a3f11df commit 698b570
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/actions/npm-install-dependencies/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@ runs:
-
name: Run `npm ci` with retries
shell: bash
run: npm run install-deps -- --ci --root-directory "${{ inputs.working-directory }}"
run: npm run install-deps -- --ci
working-directory: ${{ inputs.working-directory }}

0 comments on commit 698b570

Please sign in to comment.