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

Commit 8dd4ad8

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 4d1329f commit 8dd4ad8

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
@@ -386,7 +386,7 @@ jobs:
386386
- skip_unless_stable_branch
387387
# Install dependencies for Firebase functions to prevent parsing errors during deployment
388388
# See https://github.com/angular/angular.js/pull/16453
389-
- run: yarn -cwd ~/ng/scripts/docs.angularjs.org-firebase/functions
389+
- run: yarn --cwd scripts/docs.angularjs.org-firebase/functions
390390
- run: yarn firebase deploy --token "$FIREBASE_TOKEN" --only hosting
391391

392392
workflows:

0 commit comments

Comments
 (0)