Skip to content

Commit 91739f6

Browse files
committed
update project action
1 parent 12c0846 commit 91739f6

2 files changed

Lines changed: 2 additions & 5 deletions

File tree

.github/workflows/ci-cd.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,17 @@ jobs:
1616
- name: Set up Python
1717
uses: actions/setup-python@v2
1818
with:
19-
python-version: '3.10'
19+
python-version: '3.12'
2020

2121
- name: Install dependencies
2222
run: |
2323
python -m pip install --upgrade pip
24-
cd python
2524
pip install uv
2625
uv pip install --system -r requirements.txt
2726
pip install setuptools wheel twine
2827
2928
- name: Build package
3029
run: |
31-
cd python
3230
pip3 install -e .
3331
python setup.py sdist bdist_wheel
3432
@@ -38,6 +36,5 @@ jobs:
3836
TWINE_USERNAME: __token__
3937
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
4038
run: |
41-
cd python
4239
twine upload --repository-url https://upload.pypi.org/legacy/ dist/*
4340

docker/Dockerfile_x86

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ RUN cargo install dora-cli --locked && \
2727

2828
RUN mkdir -p /project && \
2929
cd /project && \
30-
git clone https://github.com/moxin-org/mofa.git && \
30+
git clone https://github.com/mofa-org/mofa.git && \
3131
cd mofa && \
3232
cd /project/mofa/python && \
3333
pip3 install --upgrade pip --index-url https://pypi.org/simple && \

0 commit comments

Comments
 (0)