Skip to content

Commit

Permalink
Merge pull request #9 from valory-xyz/fix/release-flow
Browse files Browse the repository at this point in the history
Fix release flow
  • Loading branch information
angrybayblade authored Jun 24, 2023
2 parents 18aa50e + 0060184 commit df73fc0
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ jobs:
sudo apt-get autoclean
python -m pip install --upgrade pip
pip install twine poetry==1.4.2
poetry install
poetry run autonomy packages sync --update-packages
- name: Build wheels and source tarball
run: |
Expand Down
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
recursive-include helpers *.yaml *.proto *.md
2 changes: 1 addition & 1 deletion packages/packages.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"third_party": {
"connection/valory/p2p_libp2p_client/0.1.0": "bafybeidwcobzb7ut3efegoedad7jfckvt2n6prcmd4g7xnkm6hp6aafrva",
"protocol/valory/acn/1.1.0": "bafybeignmc5uh3vgpuckljcj2tgg7hdqyytkm6m5b6v6mxtazdcvubibva",
"protocol/valory/mech_acn/0.1.0": "bafybeifdg57my55xwr3klgu72np3dcgrctalndpod2cm6xayfuqqvaocku"
"protocol/valory/acn_data_share/0.1.0": "bafybeieyixetwvz767zekhvg7r6etumyanzys6xbalx2brrfswybinnlhi"
}
}
17 changes: 17 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,23 @@ authors = ["David Minarsch <[email protected]>"]
readme = "README.md"
packages = [{include = "mech_client"}]
license = "Apache-2.0"
include = [
"mech_client/helpers/acn/*",
"mech_client/helpers/acn/*.md",
"mech_client/helpers/acn/*.yaml",
"mech_client/helpers/acn/*.proto",
"mech_client/helpers/acn/tests/*",
"mech_client/helpers/acn_data_share/*",
"mech_client/helpers/acn_data_share/*.md",
"mech_client/helpers/acn_data_share/*.yaml",
"mech_client/helpers/acn_data_share/*.proto",
"mech_client/helpers/acn_data_share/tests/*",
"mech_client/helpers/p2p_libp2p_client/*",
"mech_client/helpers/p2p_libp2p_client/*.md",
"mech_client/helpers/p2p_libp2p_client/*.yaml",
"mech_client/helpers/p2p_libp2p_client/*.proto",
"mech_client/helpers/p2p_libp2p_client/tests/*",
]

[tool.poetry.dependencies]
python = "^3.10"
Expand Down

0 comments on commit df73fc0

Please sign in to comment.