Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix syntax error in examples #9167

Merged
merged 5 commits into from
Jan 9, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Fix syntax error in examples
alexazl authored Jan 8, 2025
commit fe90be191cce8b52c65230eff1d2474ad50c6e40
Original file line number Diff line number Diff line change
@@ -117,7 +117,7 @@ jobs:
...
(existing deployment commands)
...
- circleci run release plan --environment-name=some-environment-name --component-name=some-component-name --target-version=<some-version-name> <my-service-release>
- run: circleci run release plan --environment-name=some-environment-name --component-name=some-component-name --target-version=<some-version-name> <my-service-release>
----
+
Substitute the placeholders above based on your application's details:
@@ -166,7 +166,7 @@ jobs:
executor: some-executor
steps:
- ./deploy.sh
- circleci run release plan --environment-name=some-environment-name --component-name=some-component-name --target-version=some-version-name my-service-release
- run: circleci run release plan --environment-name=some-environment-name --component-name=some-component-name --target-version=some-version-name my-service-release
release-my-service:
type: release
plan_name: my-service-release