alinaliBQ commented on code in PR #48934:
URL: https://github.com/apache/arrow/pull/48934#discussion_r2737767052


##########
.github/workflows/cpp_extra.yml:
##########
@@ -478,6 +478,59 @@ jobs:
           remote_key: ${{ secrets.NIGHTLIES_RSYNC_KEY }}
           remote_host_key: ${{ secrets.NIGHTLIES_RSYNC_HOST_KEY }}
 
+  odbc-check-tags:
+    needs: odbc
+    name: ODBC Check RC Tag
+    runs-on: ubuntu-latest
+    outputs:
+      rc-tag: ${{ steps.check-rc.outputs.rc-tag }}
+    if: github.ref_type == 'tag' && github.repository == 'apache/arrow'
+    steps:
+      - name: Check Arrow RC Tag
+        id: check-rc
+        run: |
+          if [[ "${GITHUB_REF_NAME}" =~ ^apache-arrow-.*-rc.*$ ]]; then
+            echo "RC tag found"
+            echo "rc-tag=true" >> "${GITHUB_OUTPUT}"
+          else
+            echo "RC tag not found"
+            echo "rc-tag=false" >> "${GITHUB_OUTPUT}"
+          fi

Review Comment:
   TODO: Will be looking into headless MSI install and a smoke test for 
checking the DLL locations



-- 
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