Skip to content

Commit

Permalink
fix: fixed missing install command before release
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Omondi committed Oct 15, 2024
1 parent d6b37e7 commit 1928ba1
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 8 deletions.
28 changes: 21 additions & 7 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,24 +32,38 @@ jobs:
python -m pip install --upgrade poetry
python -m pip install --upgrade poetry-plugin-mono-repo-deps
- name: Publish kiota_abstractions to PyPI
run: poetry publish --build
run: |
poetry install
poetry publish --build
working-directory: "./packages/abstractions"
- name: Publish kiota_authentication_azure to PyPI
run: poetry publish --build
run: |
poetry install
poetry publish --build
working-directory: "./packages/authentication/azure"
- name: Publish kiota_http to PyPI
run: poetry publish --build
run: |
poetry install
poetry publish --build
working-directory: "./packages/http/httpx"
- name: Publish kiota_serialization_form to PyPI
run: poetry publish --build
run: |
poetry install
poetry publish --build
working-directory: "./packages/serialization/form"
- name: Publish kiota_serialization_json to PyPI
run: poetry publish --build
run: |
poetry install
poetry publish --build
working-directory: "./packages/serialization/json"
- name: Publish kiota_serialization_text to PyPI
run: poetry publish --build
run: |
poetry install
poetry publish --build
working-directory: "./packages/serialization/text"
- name: Publish kiota_serialization_multipart to PyPI
run: poetry publish --build
run: |
poetry install
poetry publish --build
working-directory: "./packages/serialization/multipart"

2 changes: 1 addition & 1 deletion packages/abstractions/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

- Changed BaseRequesBuilder class to be instantiable.
- Changed BaseRequestBuilder class to be instantiable.
- Renamed RequestConfiguration class to BaseRequestConfiguration.

## [0.5.4] - 2023-06-22
Expand Down

0 comments on commit 1928ba1

Please sign in to comment.