This is an automated email from the ASF dual-hosted git repository.

liurenjie1024 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg-rust.git


The following commit(s) were added to refs/heads/main by this push:
     new 7db4b0181 chore: Change publish parallism back to 1 (#2254)
7db4b0181 is described below

commit 7db4b018153f1eaefd10e1b62720c5f8cb292692
Author: Shawn Chang <[email protected]>
AuthorDate: Wed Mar 18 18:11:47 2026 -0700

    chore: Change publish parallism back to 1 (#2254)
    
    ## Which issue does this PR close?
    
    <!--
    We generally require a GitHub issue to be filed for all bug fixes and
    enhancements and this helps us generate change logs for our releases.
    You can link an issue to this PR using the GitHub syntax. For example
    `Closes #123` indicates that this PR will close issue #123.
    -->
    
    - publish has to be done one by one, otherwise we may see failure like
    this: https://github.com/apache/iceberg-rust/actions/runs/23260056698
    
    ## What changes are included in this PR?
    - Change publish parallism back to 1
    <!--
    Provide a summary of the modifications in this PR. List the main changes
    such as new features, bug fixes, refactoring, or any other updates.
    -->
    
    ## Are these changes tested?
    
    <!--
    Specify what test covers (unit test, integration test, etc.).
    
    If tests are not included in your PR, please explain why (for example,
    are they covered by existing tests)?
    -->
---
 .github/workflows/publish.yml | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml
index c1c904615..26f61118b 100644
--- a/.github/workflows/publish.yml
+++ b/.github/workflows/publish.yml
@@ -33,8 +33,7 @@ jobs:
   publish:
     runs-on: ubuntu-latest
     strategy:
-      # Publish package one by one instead of flooding the registry
-      max-parallel: 15
+      max-parallel: 1 # Publish package one by one instead of flooding the 
registry
       matrix:
         # Order here is sensitive, as it will be used to determine the order 
of publishing
         package:

Reply via email to