diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d3545cb..d252a54 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -38,6 +38,12 @@ jobs: - name: Build PyPI package run: | python3 -m build + - name: Archive distribution + uses: actions/upload-artifact@v4 + with: + name: linux-dist + path: | + dist/*.tar.gz - name: Upload to PyPI if: github.event_name != 'workflow_dispatch' uses: pypa/gh-action-pypi-publish@release/v1 @@ -45,12 +51,6 @@ jobs: user: __token__ password: ${{ secrets.PYPI_TOKEN }} skip-existing: true - - name: Archive distribution - uses: actions/upload-artifact@v4 - with: - name: linux-dist - path: | - dist/*.tar.gz build-windows: runs-on: windows-latest diff --git a/libeos/__init__.py b/libeos/__init__.py index 3ed2095..224aec6 100644 --- a/libeos/__init__.py +++ b/libeos/__init__.py @@ -2,5 +2,5 @@ Package to handle data redction at AMOR instrument to be used by eos.py script. """ -__version__ = '2.1.2' +__version__ = '2.1.3' __date__ = '2024-12-03'