We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0bc9824 commit 4685a6cCopy full SHA for 4685a6c
.github/workflows/release.yml
@@ -101,7 +101,7 @@ jobs:
101
publish_to_pypi:
102
name: Publish wheels to PyPi
103
# if branch main repo "infinigen"
104
- if: github.repository == 'princeton-vl/infinigen' && github.event_name == 'push'
+ if: github.repository == 'princeton-vl/infinigen' && startsWith(github.event.ref, 'refs/tags')
105
needs: [build_sdist_purepy, build_wheels]
106
runs-on: ubuntu-latest
107
steps:
infinigen/__init__.py
@@ -6,7 +6,7 @@
6
import logging
7
from pathlib import Path
8
9
-__version__ = "1.15.4"
+__version__ = "1.15.5"
10
11
12
def repo_root():
0 commit comments