diff --git a/.github/workflows/ci-wheels.yml b/.github/workflows/ci-wheels.yml index 843486b84c..a1c18d9f77 100644 --- a/.github/workflows/ci-wheels.yml +++ b/.github/workflows/ci-wheels.yml @@ -133,7 +133,7 @@ jobs: runs-on: ubuntu-latest # upload to Test PyPI for every commit on main branch # and check for the SciTools repo - if: github.event_name == 'push' && github.event.ref == 'refs/heads/main' && github.repository-owner == 'SciTools' + if: github.event_name == 'push' && github.event.ref == 'refs/heads/main' && github.repository_owner == 'SciTools' steps: - uses: actions/download-artifact@v3 with: @@ -153,7 +153,7 @@ jobs: name: "publish to pypi" runs-on: ubuntu-latest # upload to PyPI for every tag starting with 'v' - if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v') && github.repository-owner == 'SciTools' + if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v') && github.repository_owner == 'SciTools' steps: - uses: actions/download-artifact@v3 with: diff --git a/docs/src/whatsnew/3.5.rst b/docs/src/whatsnew/3.5.rst index b33f929744..b30fa1adf0 100644 --- a/docs/src/whatsnew/3.5.rst +++ b/docs/src/whatsnew/3.5.rst @@ -181,8 +181,9 @@ This document explains the changes made to Iris for this release #. `@lbdreyer`_ removed the Iris TestRunner. Tests are now run via nox or pytest. (:pull:`5205`) -#. `@agriyakhetarpal`_ prevented the GitHub action for publishing releases to - PyPI from running in forks. (:pull:`5220`) +#. `@agriyakhetarpal`_ and `@trexfeathers`_ prevented the GitHub action for + publishing releases to PyPI from running in forks. + (:pull:`5220`, :pull:`5248`) #. `@trexfeathers`_ moved the benchmark runner conveniences from ``noxfile.py`` to a dedicated ``benchmarks/bm_runner.py``. (:pull:`5215`)