From 63facf609b0971a05dcffdedb254deecbafbdd1b Mon Sep 17 00:00:00 2001 From: Chris Wilhelm Date: Thu, 13 Feb 2025 14:22:14 -0800 Subject: [PATCH] lol --- .github/workflows/CI.yml | 10 +++++----- Cargo.toml | 2 +- pyproject.toml | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index ff197dd2..28790e74 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -207,7 +207,7 @@ jobs: uses: actions/upload-artifact@v4.4 with: overwrite: true - name: linux-${{ matrix.target }}-wheels-${{ github.run_id }} + name: release-wheel-linux-${{ matrix.target }}-${{ github.run_id }} path: dist build-windows: @@ -233,7 +233,7 @@ jobs: uses: actions/upload-artifact@v4.4 with: overwrite: true - name: windows-${{ matrix.target }}-wheels-${{ github.run_id }} + name: release-wheel-windows-${{ matrix.target }}-${{ github.run_id }} path: dist build-macos: @@ -258,7 +258,7 @@ jobs: uses: actions/upload-artifact@v4.4 with: overwrite: true - name: macos-${{ matrix.target }}-wheels-${{ github.run_id }} + name: release-wheel-macos-${{ matrix.target }}-${{ github.run_id }} path: dist sdist: @@ -276,7 +276,7 @@ jobs: uses: actions/upload-artifact@v4.4 with: overwrite: true - name: wheels-${{ github.run_id }} + name: release-sdist-${{ github.run_id }} path: dist release: @@ -287,7 +287,7 @@ jobs: steps: - uses: actions/download-artifact@v4 with: - name: wheels-${{ github.run_id }} + pattern: release-*-${{ github.run_id }} - name: Publish to PyPI uses: PyO3/maturin-action@v1 env: diff --git a/Cargo.toml b/Cargo.toml index 15b79fc8..1d2ff6bd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dolma" -version = "1.2.0-dev5" +version = "1.2.0-dev6" edition = "2021" license = "Apache-2.0" diff --git a/pyproject.toml b/pyproject.toml index a5f212e0..5d60c46a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "dolma" -version = "1.2.0.dev5" +version = "1.2.0.dev6" description = "Data filters" license = { text = "Apache-2.0" } readme = "README.md"