Skip to content

Commit 41d4d87

Browse files
authored
feat/fix release (#456)
* fix release CI * fix release CI * fix release CI * fix release CI
1 parent e960161 commit 41d4d87

File tree

3 files changed

+14
-7
lines changed

3 files changed

+14
-7
lines changed

.github/workflows/release.yml

+11-5
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,21 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- uses: actions/checkout@v4
16-
- name: Set up Python ${{ env.PYTHON_VERSION }}
17-
uses: actions/setup-python@v5
16+
- name: Install uv
17+
uses: astral-sh/setup-uv@v5
1818
with:
1919
python-version: ${{ env.PYTHON_VERSION }}
20+
21+
- name: Set up Python
22+
run: uv python install
23+
24+
- name: Install dependencies
25+
run: uv sync --frozen --group release
26+
2027
- name: Build artifact
2128
run: |
22-
make install-release
23-
python setup.py sdist
24-
python setup.py bdist_wheel
29+
uv build
30+
2531
- name: Publish package
2632
uses: pypa/gh-action-pypi-publish@release/v1
2733
with:

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
## 1.0.0
1+
## 1.0.1
22

33
### Features
44

55
* **Migrate project to use pyproject.toml and uv**
66

7+
78
## 0.7.2
89

910
### Features

unstructured_ingest/__version__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.0.0" # pragma: no cover
1+
__version__ = "1.0.1" # pragma: no cover

0 commit comments

Comments
 (0)