diff --git a/.github/rich-codex.yml b/.github/rich-codex.yml index 37d6e9e..84d3b3d 100644 --- a/.github/rich-codex.yml +++ b/.github/rich-codex.yml @@ -1,5 +1,5 @@ outputs: - - command: "rye run ncdump-rich ./demo/example.nc" + - command: bash -c "source $HOME/.rye/env && rye run ncdump-rich ./demo/example.nc" title: Latest Rich NcDump img_paths: - ./demo/latest.png diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a287914..11ab3e8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -72,7 +72,7 @@ jobs: uses: salsify/action-detect-and-tag-new-version@v2.0.3 with: version-command: | - bash -o pipefail -c "rye version | awk '{ print \$2 }'" + bash -o pipefail -c "source $HOME/.rye/env && rye version | awk '{ print \$2 }'" - name: Bump version for developmental release if: "! steps.check-version.outputs.tag" diff --git a/demo/latest.png b/demo/latest.png index e0d44d4..02409a5 100644 Binary files a/demo/latest.png and b/demo/latest.png differ diff --git a/pyproject.toml b/pyproject.toml index 59cd4d5..cc14716 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "ncdump-rich" -version = "0.5.0" +version = "0.5.1" description = "Rich NcDump" authors = [{ name = "Eirik Enger", email = "engeir@pm.me" }] license = "GPL-3.0"