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

lidavidm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git


The following commit(s) were added to refs/heads/main by this push:
     new 58e3411  ci: don't build Conda packages for RCs (#502)
58e3411 is described below

commit 58e3411b658f6d4a2737a21ba991953d470cd1f6
Author: David Li <[email protected]>
AuthorDate: Thu Mar 9 14:53:28 2023 -0500

    ci: don't build Conda packages for RCs (#502)
    
    Fixes #443.
---
 .github/workflows/packaging.yml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/.github/workflows/packaging.yml b/.github/workflows/packaging.yml
index 49499df..0b426a1 100644
--- a/.github/workflows/packaging.yml
+++ b/.github/workflows/packaging.yml
@@ -336,6 +336,8 @@ jobs:
   python-conda-linux:
     name: "Python ${{ matrix.arch }} Conda"
     runs-on: ubuntu-latest
+    # No need for Conda packages during release
+    if: "!startsWith(github.ref, 'refs/tags/')"
     needs:
       - source
     strategy:
@@ -397,6 +399,8 @@ jobs:
   python-conda-macos:
     name: "Python ${{ matrix.arch }} Conda"
     runs-on: macos-latest
+    # No need for Conda packages during release
+    if: "!startsWith(github.ref, 'refs/tags/')"
     needs:
       - source
     strategy:

Reply via email to