File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ jobs:
133133 runs-on : ubuntu-latest
134134 # upload to Test PyPI for every commit on main branch
135135 # and check for the SciTools repo
136- if : github.event_name == 'push' && github.event.ref == 'refs/heads/main' && github.repository-owner == 'SciTools'
136+ if : github.event_name == 'push' && github.event.ref == 'refs/heads/main' && github.repository_owner == 'SciTools'
137137 steps :
138138 - uses : actions/download-artifact@v3
139139 with :
@@ -153,7 +153,7 @@ jobs:
153153 name : " publish to pypi"
154154 runs-on : ubuntu-latest
155155 # upload to PyPI for every tag starting with 'v'
156- if : github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v') && github.repository-owner == 'SciTools'
156+ if : github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v') && github.repository_owner == 'SciTools'
157157 steps :
158158 - uses : actions/download-artifact@v3
159159 with :
Original file line number Diff line number Diff line change @@ -181,8 +181,9 @@ This document explains the changes made to Iris for this release
181181#. `@lbdreyer `_ removed the Iris TestRunner. Tests are now run via nox or
182182 pytest. (:pull: `5205 `)
183183
184- #. `@agriyakhetarpal `_ prevented the GitHub action for publishing releases to
185- PyPI from running in forks. (:pull: `5220 `)
184+ #. `@agriyakhetarpal `_ and `@trexfeathers `_ prevented the GitHub action for
185+ publishing releases to PyPI from running in forks.
186+ (:pull: `5220 `, :pull: `5248 `)
186187
187188#. `@trexfeathers `_ moved the benchmark runner conveniences from ``noxfile.py ``
188189 to a dedicated ``benchmarks/bm_runner.py ``. (:pull: `5215 `)
You can’t perform that action at this time.
0 commit comments