You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ag...@apache.org on 2022/11/18 12:07:50 UTC

[arrow-ballista] branch master updated: Remove capture group (#527)

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

agrove pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-ballista.git


The following commit(s) were added to refs/heads/master by this push:
     new 5f0cf858 Remove capture group (#527)
5f0cf858 is described below

commit 5f0cf8588f87fc5e711b0331c34d9613d3ddedd1
Author: Brent Gardner <br...@spaceandtime.io>
AuthorDate: Fri Nov 18 05:07:45 2022 -0700

    Remove capture group (#527)
---
 .github/workflows/rust.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml
index 0aac1120..38a9d806 100644
--- a/.github/workflows/rust.yml
+++ b/.github/workflows/rust.yml
@@ -306,7 +306,7 @@ jobs:
           echo "github user is $DOCKER_USER"
           docker build -t arrow-ballista-standalone:latest -f dev/docker/ballista-standalone.Dockerfile .
           export DOCKER_TAG="$(git describe --exact-match --tags $(git log -n1 --pretty='%h') || echo '')"
-          if [[ $DOCKER_TAG =~ ^[0-9\.]+(?:-rc[0-9]+)?$ ]]
+          if [[ $DOCKER_TAG =~ ^[0-9\.]+(-rc[0-9]+)?$ ]]
           then
             echo "publishing docker tag $DOCKER_TAG"
             docker tag arrow-ballista-standalone:latest ghcr.io/apache/arrow-ballista-standalone:$DOCKER_TAG