kou commented on code in PR #43816:
URL: https://github.com/apache/arrow/pull/43816#discussion_r1731954735


##########
dev/tasks/macros.jinja:
##########
@@ -169,10 +169,14 @@ env:
   - name: Upload package to Gemfury
     shell: bash
     run: |
-      fury push \
-        --api-token=${CROSSBOW_GEMFURY_TOKEN} \
-        --as=${CROSSBOW_GEMFURY_ORG} \
-        {{ pattern }}
+      if $(fury versions --as=${CROSSBOW_GEMFURY_ORG} 
--api-token=${CROSSBOW_GEMFURY_TOKEN} pyarrow | grep -q "{{ arrow.no_rc_version 
}}"); then

Review Comment:
   We may want to use `--fixed-strings` to avoid unexpected match: 
   
   ```suggestion
         if $(fury versions --as=${CROSSBOW_GEMFURY_ORG} 
--api-token=${CROSSBOW_GEMFURY_TOKEN} pyarrow | grep --fixed-strings -q "{{ 
arrow.no_rc_version }}"); then
   ```



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to