diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7b1c416..a8d28a2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -78,13 +78,18 @@ jobs: shell: bash run: | python -mvenv .tox.venv - .tox.venv/bin/python -mpip install -U pip - .tox.venv/bin/pip install \ - 'tox==${{ steps.calculate-tox-version.outputs.tox-min-version }}' + if [[ "$(uname -s)" =~ _NT ]]; then + # Git bash reports something like: MINGW64_NT-10.0-22621 + source .tox.venv/Scripts/activate + else + source .tox.venv/bin/activate + fi + python -mpip install -U pip + pip install 'tox==${{ steps.calculate-tox-version.outputs.tox-min-version }}' cat < .changelog-snippet --- - $(.tox.venv/bin/tox -echangelog -qq -- ${{ needs.determine-tag.outputs.release-version }}) + $(tox -echangelog -qq -- ${{ needs.determine-tag.outputs.release-version }}) EOF - name: Create ${{ needs.determine-tag.outputs.release-tag }} Release uses: softprops/action-gh-release@v1 diff --git a/CHANGES.md b/CHANGES.md index 06fda35..0ed20dc 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,6 @@ # Release Notes -## 0.3.7 +## 0.3.8 This release brings support for files with sources other than the scie itself. This allows for shipping skinny skis that later materialize certain files from the internet or elsewhere just when diff --git a/Cargo.lock b/Cargo.lock index 3718b11..0a290ef 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -582,7 +582,7 @@ dependencies = [ [[package]] name = "scie-jump" -version = "0.3.7" +version = "0.3.8" dependencies = [ "bstr", "env_logger", diff --git a/Cargo.toml b/Cargo.toml index a955b14..3f932ee 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ members = [ [package] name = "scie-jump" -version = "0.3.7" +version = "0.3.8" description = "The self contained interpreted executable launcher." authors = [ "John Sirois ",