Skip to content

Commit

Permalink
make publish a manual process for now. update circleci docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
bhamail committed Oct 13, 2021
1 parent 28dd92f commit f5b2d42
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .circleci/circleci-readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ The local build runs in a docker container.

* Run a local build with the following command:

circleci local execute -c .circleci/local-config.yml --job 'build'
circleci local execute -c .circleci/local-config.yml --job 'build_and_test-39'

Typically, both commands are run together:

circleci config process .circleci/config.yml > .circleci/local-config.yml && circleci local execute -c .circleci/local-config.yml --job 'build'
circleci config process .circleci/config.yml > .circleci/local-config.yml && circleci local execute -c .circleci/local-config.yml --job 'build_and_test-39'

With the above command, operations that cannot occur during a local build will show an error like this:

Expand All @@ -25,4 +25,4 @@ The local build runs in a docker container.

However, the build will proceed and can complete “successfully”, which allows you to verify scripts in your config, etc.

If the build does complete successfully, you should see a happy yellow `Success!` message.
If the build does complete successfully, you should see a happy yellow `Success!` message.
4 changes: 4 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,11 @@ workflows:
- coding_standards
release:
jobs:
- manual_release:
type: approval
- release_and_pypi_publish:
requires:
- manual_release
context: pypi
filters:
branches:
Expand Down

0 comments on commit f5b2d42

Please sign in to comment.