diff --git a/.github/workflows/GHA.actions-handy.yml b/.github/workflows/GHA.actions-handy.yml index 0d03f4e..03bd6af 100644 --- a/.github/workflows/GHA.actions-handy.yml +++ b/.github/workflows/GHA.actions-handy.yml @@ -25,7 +25,6 @@ on: env: DAY_OF_WEEK: Friday - jobs: just-macos-things: runs-on: macos-latest @@ -67,10 +66,13 @@ jobs: - name: use GITHUB_ENV for runtime variable assignment run: | echo "DAYS_PLUS_11=$(date -d "$(date) + 11 days" +%b%d)" >> $GITHUB_ENV + printf "DAYS_PLUS_11: %s\n" "$DAYS_PLUS_11" + echo 'EMPTY! Notice that the shell assignment not availabe until the next step' - name: "Here is shell env variable in next step" run: | - echo "Working variable from GITHUB_ENV: $DAYS_PLUS_11" + echo "Working variable from GITHUB_ENV: DAYS_PLUS_11" + printf "DAYS_PLUS_11: %s\n" "$DAYS_PLUS_11" - name: workflow_dispatch inputs usage and context run: | diff --git a/.github/workflows/poetry.test.yml b/.github/workflows/poetry.test.yml index 71bb138..dd85cc1 100644 --- a/.github/workflows/poetry.test.yml +++ b/.github/workflows/poetry.test.yml @@ -35,7 +35,6 @@ jobs: - run: python --version - # TODO: add cacheing for poetry maybe or not - name: Install poetry with pipx and python version run: pipx install --python $(which python) poetry - run: poetry install diff --git a/__init__.py b/__init__.py index 7fd229a..fc79d63 100644 --- a/__init__.py +++ b/__init__.py @@ -1 +1 @@ -__version__ = '0.2.0' +__version__ = '0.2.1' diff --git a/pyproject.toml b/pyproject.toml index 6561f74..4ff8cd7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "desertislandutils" -version = "0.2.0" +version = "0.2.1" description = "A collection of personal convenience utilities" authors = ["mahiki "] license = "MIT" diff --git a/tests/test_desertislandutils.py b/tests/test_desertislandutils.py index 32d163e..ceff2c6 100644 --- a/tests/test_desertislandutils.py +++ b/tests/test_desertislandutils.py @@ -3,4 +3,4 @@ def test_version(): # I don't know why I'm testing this but at least the import worked in pytest - assert __version__ == '0.2.0' + assert __version__ == '0.2.1'