Skip to content

Commit 413668b

Browse files
committed
fix condition to allow upload to anaconda.org
1 parent 270c32e commit 413668b

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/posix.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,8 @@ jobs:
124124
path: dist/scipy_openblas*.whl
125125

126126
- name: Upload to ananconda.org
127-
if: ${{ inputs.publish == false && (github.event_name == 'schedule' || github.event_name == 'workflow_dispatch') }}
127+
if: ${{ github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' ||
128+
(github.event_name == 'push' && github.ref == 'refs/heads/main') }}
128129
uses: scientific-python/upload-nightly-action@0.6.4
129130
with:
130131
artifacts_path: dist

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ build-backend = "setuptools.build_meta"
99
[project]
1010
name = "scipy-openblas64"
1111
# v0.3.33
12-
version = "0.3.33.0.0"
12+
version = "0.3.33.0.1"
1313
requires-python = ">=3.7"
1414
description = "Provides OpenBLAS for python packaging"
1515
readme = "README.md"

0 commit comments

Comments
 (0)