This is an automated email from the ASF dual-hosted git repository.
xushiyan pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/hudi-rs.git
The following commit(s) were added to refs/heads/main by this push:
new 997e42e chore(ci): replace archived actions-rs actions (#351)
997e42e is described below
commit 997e42e08a13476c3b1eea16b1ae8ac99fab413d
Author: Jacob Wujciak-Jens <[email protected]>
AuthorDate: Wed Jun 11 09:20:49 2025 +0200
chore(ci): replace archived actions-rs actions (#351)
---
.github/workflows/release.yml | 14 +++++---------
1 file changed, 5 insertions(+), 9 deletions(-)
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index e7aa911..516cf48 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -51,19 +51,15 @@ jobs:
steps:
- uses: actions/checkout@v4
- - uses: actions-rs/toolchain@v1
- with:
- profile: minimal
- toolchain: stable
- override: true
+ - run: |
+ rustup toolchain add --profile=minimal stable
+ rustup override set stable
- name: cargo publish
- uses: actions-rs/cargo@v1
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
- with:
- command: publish
- args: -p ${{ matrix.package }} --all-features
+ run: |
+ cargo publish -p ${{ matrix.package }} --all-features
release-pypi-mac:
name: PyPI release on Mac