Skip to content

Commit 68b316e

Browse files
authored
Merge pull request #88 from awslabs/fix/semantic-release-single-responsibility
fix: semantic release should only build PyPI packages, not containers
2 parents 7479aff + 72d1dce commit 68b316e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dev-tools/scripts/install_dev_tools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ def _install_syft_generic(self):
354354
"""Install syft using their install script."""
355355
return self._run_command(
356356
"curl -sSfL https://raw.githubusercontent.com/anchore/syft/main/install.sh | sh -s -- -b /usr/local/bin",
357-
shell=True
357+
shell=True,
358358
)
359359

360360
def _install_uv_generic(self):

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ namespace_packages = true
286286

287287
[tool.semantic_release]
288288
version_variables = [".project.yml:project.version"]
289-
build_command = "./dev-tools/release/orchestrator.sh"
289+
build_command = "make build"
290290
major_on_zero = true
291291
allow_zero_version = true
292292
tag_format = "v{version}"

0 commit comments

Comments
 (0)