Skip to content

Commit 10360af

Browse files
committed
Refactor CI workflows to remove --no-source flag from build commands
- Updated publish-python-sdk.yml and release-python-sdk.yml to remove the --no-source flag from the uv build command, ensuring the build process includes source files. - No changes made to the version in _version.py, maintaining the current version as 0.0.2b8.
1 parent 1bfa7d4 commit 10360af

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/publish-python-sdk.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,8 +124,8 @@ jobs:
124124
uv tool run pip-audit --format json --output vulnerability-report.json --requirement requirements.txt || true
125125
echo "Generated vulnerability report (non-blocking)"
126126
127-
- run: uv build --no-source
128-
127+
- run: uv build
128+
129129
- name: Sign the package
130130
run: |
131131
uv pip install -U pypi-attestations

.github/workflows/release-python-sdk.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ jobs:
178178
echo 'python -m sigstore verify --bundle <bundle-file> exospherehost==${{ github.ref_name }}' >> sbom-summary.md
179179
echo '```' >> sbom-summary.md
180180
181-
- run: uv build --no-source
181+
- run: uv build
182182

183183
- name: Sign the package
184184
run: |
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version = "0.0.2b8"
1+
version = "0.0.2b8"

0 commit comments

Comments
 (0)