From 606421cfa76dce9ff64fc64af224702df132b8a6 Mon Sep 17 00:00:00 2001 From: Sebastian Walter Date: Sat, 11 Nov 2023 19:03:21 +0100 Subject: [PATCH] update workflows --- .github/workflows/ci.yml | 4 ++-- .github/workflows/release.yml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e3e4141..801f2e6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: @@ -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" diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 452806b..b6997f2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 @@ -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 @@ -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: