Skip to content

Commit

Permalink
update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
bastiscode committed Nov 11, 2023
1 parent a0d47b3 commit 606421c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
args: --release --out dist
- name: "Python: Install wheels and test import"
run: |
pip install dist/*.whl --force-reinstall
pip install dtpu --no-index --find-links dist --force-reinstall
python -c "import text_utils"
linux:
Expand All @@ -51,5 +51,5 @@ jobs:
args: --release --out dist
- name: "Python: Install wheels and test import"
run: |
pip install dist/*.whl --force-reinstall
pip install dtpu --no-index --find-links dist --force-reinstall
python -c "import text_utils"
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
args: --release --out dist
- name: "Python: Install wheels and test import"
run: |
pip install dist/*.whl --force-reinstall
pip install dtpu --no-index --find-links dist --force-reinstall
python -c "import text_utils"
- name: Upload wheels
uses: actions/upload-artifact@v3
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
args: --release --out dist
- name: "Python: Install wheels and test import"
run: |
pip install dist/*.whl --force-reinstall
pip install dtpu --no-index --find-links dist --force-reinstall
python -c "import text_utils"
- name: Upload wheels
uses: actions/upload-artifact@v3
Expand All @@ -66,7 +66,7 @@ jobs:
release:
name: Release
runs-on: ubuntu-latest
needs: [linux, windows, macos]
needs: [linux, windows]
steps:
- uses: actions/download-artifact@v3
with:
Expand Down

0 comments on commit 606421c

Please sign in to comment.