Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 6c5918b

Browse files
committed
chore(ci): fix deploy-docs CI job
One step in the `deploy-docs` CI job contains a typo that causes it to fail: `yarn -cwd ...` instead of `yarn --cwd ...` This has been broken since a0488b3, but has not been noticed because the job was not running. #17060 configured the job to run as necessary, which brought up the error. Example failure: - On v1.8.x: https://app.circleci.com/pipelines/github/angular/angular.js/ 153/workflows/6a9826ac-d191-4042-8c39-0c969c81e381/jobs/1606 This commit fixes the typo in the command.
1 parent b4b451a commit 6c5918b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ jobs:
387387
- skip_unless_stable_branch
388388
# Install dependencies for Firebase functions to prevent parsing errors during deployment
389389
# See https://github.com/angular/angular.js/pull/16453
390-
- run: yarn -cwd ~/ng/scripts/docs.angularjs.org-firebase/functions
390+
- run: yarn --cwd scripts/docs.angularjs.org-firebase/functions
391391
- run: yarn firebase deploy --token "$FIREBASE_TOKEN" --only hosting
392392

393393
workflows:

0 commit comments

Comments
 (0)