diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e952dac..fbc16ee 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -97,6 +97,9 @@ jobs: twine upload dist/* -u __token__ -p ${{ secrets.PYPI_TOKEN }} --skip-existing this_tag=$(python -c "import eos;print('v'+eos.__version__)") echo "RELEASE_TAG=$this_tag" >> $GITHUB_ENV + - name: Sleep 30s + run: | + sleep 30 - name: Update Release if: ${{ (github.event_name != 'workflow_dispatch') || (contains(fromJson('["all_incl_release"]'), github.event.inputs.build-items)) }} uses: actions/gitea-release-action@v1 diff --git a/eos/__init__.py b/eos/__init__.py index 12929b2..8e736ab 100644 --- a/eos/__init__.py +++ b/eos/__init__.py @@ -2,5 +2,5 @@ Package to handle data redction at AMOR instrument to be used by __main__.py script. """ -__version__ = '3.3.0' +__version__ = '3.3.1' __date__ = '2026-07-09'