Skip to content

Commit

Permalink
Merge pull request #64 from eWaterCycle/gh-actions
Browse files Browse the repository at this point in the history
Fix gh-actions PyPI publishing automation and make ready for new patch release (1.1.1)
  • Loading branch information
JaroCamphuijsen authored Dec 15, 2020
2 parents 6ecd59f + 62bfb82 commit 39d1639
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish-to-pypi.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Publish Python distributions to PyPI and TestPyPI

on:
on:
release:
types: [published]

Expand Down Expand Up @@ -42,7 +42,7 @@ jobs:

# Publish a tagged version on PyPI for non-release candidates
- name: Publish distribution to PyPI
if: startsWith(github.ref, 'refs/tags') && ! contains(github.ref, 'rc')
if: "startsWith(github.ref, 'refs/tags') && !contains(github.ref, 'rc')"
uses: pypa/gh-action-pypi-publish@master
with:
password: ${{ secrets.pypi_password }}
6 changes: 5 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
Release Notes
*************

1.1.1 (2020-12-15)
~~~~~~~~~~~~~~~~~~~~~
* Patch to fix the github actions publish automation `#64 <https://github.com/eWaterCycle/era5cli/pull/64>`_

1.1.0 (2020-12-14)
~~~~~~~~~~~~~~~~~~~~~
* The 1.1.0 era5cli minor release.
* The stable 1.1.0 era5cli minor release.
* Add support for ERA5 preliminary back extension `#58 <https://github.com/eWaterCycle/era5cli/pull/58>`_
* Update tests `#57 <https://github.com/eWaterCycle/era5cli/pull/57>`_
* Add automated PyPI package building and publishing with github Actions `#62 <https://github.com/eWaterCycle/era5cli/pull/62>`_
Expand Down
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,4 @@ license: Apache-2.0
message: "If you use this software, please cite it using these metadata."
repository-code: "https://github.com/ewatercycle/era5cli"
title: era5cli
version: 1.1.0
version: 1.1.1
2 changes: 1 addition & 1 deletion era5cli/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@
'Niels Drost', 'Fakhereh Alidoost', 'Bouwe Andela',
'Jerom Aerts', 'Berend Weel', 'Rolf Hut', 'Klaus Zimmermann')
__email__ = '[email protected]'
__version__ = '1.1.0'
__version__ = '1.1.1'

0 comments on commit 39d1639

Please sign in to comment.