Skip to content

Commit

Permalink
ci: fix deprecated CircleCI config (#207)
Browse files Browse the repository at this point in the history
- Change deprecated Circle step name from `deploy` to `run`(see https://circleci.com/docs/migrate-from-deploy-to-run/)
- Remove workflows version key, which is deprecated since CircleCI 2.1
(see https://circleci.com/docs/configuration-reference/#workflow-version)
  • Loading branch information
bolinocroustibat authored Oct 30, 2024
1 parent 148e051 commit 4e45953
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 1 addition & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,13 +121,12 @@ jobs:
steps:
- attach_workspace:
at: .
- deploy:
- run:
name: Publish on PyPI
command: |
poetry publish --username "${PYPI_USERNAME}" --password "${PYPI_PASSWORD}" --no-interaction
workflows:
version: 2
build:
jobs:
- install:
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

- Fix minor types issues [#204](https://github.com/datagouv/hydra/pull/204)
- Return resources statuses count in crawler status endpoint response [#206](https://github.com/datagouv/hydra/pull/206)
- Fix deprecated CircleCI config [#207](https://github.com/datagouv/hydra/pull/207)

## 2.0.4 (2024-10-28)

Expand Down

0 comments on commit 4e45953

Please sign in to comment.