From 9b10287a4fb9c737f6f28d9e53f463c3502aa3c6 Mon Sep 17 00:00:00 2001 From: Weston Pace Date: Thu, 22 Jan 2026 05:22:57 -0800 Subject: [PATCH 1/2] Also publish windows RCs to fury (not pypi) --- .github/workflows/pypi-publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pypi-publish.yml b/.github/workflows/pypi-publish.yml index 45ad965e479..002ff855f28 100644 --- a/.github/workflows/pypi-publish.yml +++ b/.github/workflows/pypi-publish.yml @@ -166,7 +166,7 @@ jobs: run: | # If the tag ends with -beta.N, we need to call setup_version.py # and export repo as "fury" instead of "pypi" - if [[ ${{ github.ref }} == refs/tags/*-beta.* ]]; then + if [[ ${{ github.ref }} == refs/tags/*-beta.* ]] || [[ ${{ github.ref }} == refs/tags/*-rc.* ]]; then TAG=$(echo ${{ github.ref }} | sed 's/refs\/tags\///') pip install packaging python ci/setup_version.py $TAG From 5e6ad54051adee2385af89a42a7779f72c509314 Mon Sep 17 00:00:00 2001 From: Weston Pace Date: Thu, 22 Jan 2026 05:26:58 -0800 Subject: [PATCH 2/2] Fix comment --- .github/workflows/pypi-publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pypi-publish.yml b/.github/workflows/pypi-publish.yml index 002ff855f28..32b1a3f7577 100644 --- a/.github/workflows/pypi-publish.yml +++ b/.github/workflows/pypi-publish.yml @@ -164,7 +164,7 @@ jobs: id: handle_tag shell: bash run: | - # If the tag ends with -beta.N, we need to call setup_version.py + # If the tag ends with -beta.N or -rc.N, we need to call setup_version.py # and export repo as "fury" instead of "pypi" if [[ ${{ github.ref }} == refs/tags/*-beta.* ]] || [[ ${{ github.ref }} == refs/tags/*-rc.* ]]; then TAG=$(echo ${{ github.ref }} | sed 's/refs\/tags\///')