Skip to content

Commit 6b2a864

Browse files
committed
In-progress add tag support
1 parent 220c7ff commit 6b2a864

1 file changed

Lines changed: 7 additions & 4 deletions

File tree

.github/workflows/cpp_extra.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -486,8 +486,9 @@ jobs:
486486
odbc-release:
487487
needs: odbc
488488
name: ODBC release
489-
runs-on: ubuntu-latest
490-
if: github.event_name == 'schedule' && github.repository == 'apache/arrow'
489+
runs-on: windows-2022
490+
# -AL- todo next: add tag filter"apache-arrow-*-rc*"
491+
if: github.ref_type == 'tag' # && github.repository == 'apache/arrow'
491492
steps:
492493
- name: Download the artifacts
493494
uses: actions/download-artifact@v7
@@ -498,17 +499,19 @@ jobs:
498499
with:
499500
fetch-depth: 0
500501
submodules: recursive
502+
# -AL- temp step to check MSI path
503+
- name: Check msi path -AL-
504+
run: |
505+
tree
501506
# Upload ODBC as GitHub release if release candidate tag is used
502507
- name: Wait for creating GitHub Release
503-
if: github.ref_type == 'tag'
504508
env:
505509
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
506510
run: |
507511
dev/release/utils-watch-gh-workflow.sh \
508512
${GITHUB_REF_NAME} \
509513
release_candidate.yml
510514
- name: Upload the artifacts to GitHub Release
511-
if: github.ref_type == 'tag'
512515
env:
513516
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
514517
run: |

0 commit comments

Comments
 (0)