From e6c4fdf5a1b253a5274d55a18245b0cff3d3e2c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9gis=20Behmo?= Date: Thu, 24 Mar 2022 08:27:11 +0100 Subject: [PATCH] v13.1.8 (2022-03-18) - [Bugfix] Fix "evalsymlink failure" during `k8s quickstart` (#611). - [Bugfix] Fix "TypeError: upgrade() got an unexpected keyword argument 'non_interactive'" during `local upgrade`. --- .github/workflows/release.yml | 18 ++++++++++++------ CHANGELOG.md | 3 ++- tutor/__about__.py | 2 +- 3 files changed, 15 insertions(+), 8 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9c2a8a41696..f35cc181ce3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -47,17 +47,23 @@ jobs: description="${description//'%'/'%25'}" description="${description//$'\n'/'%0A'}" description="${description//$'\r'/'%0D'}" + echo "::echo::on" echo "::set-output name=text::$description" + echo "::echo::off" shell: bash - name: Get release file name id: release-file - run: echo "::set-output name=filename::tutor-$(uname -s)_$(uname -m)" + run: | + echo "::echo::on" + echo "::set-output name=filename::tutor-$(uname -s)_$(uname -m)" + echo "::echo::off" shell: bash - - name: Debug release variables + - name: Get release name + id: release-name run: | - echo "Publish file '${{ steps.release-file.outputs.filename }}' to release ${{ github.ref }}" - echo "================" - echo "${{ steps.release-description.outputs.text }}" + echo "::echo::on" + echo "::set-output name=release::${{ github.ref }}" + echo "::echo::off" - name: Upload bundle # https://github.com/marketplace/actions/upload-files-to-a-github-release uses: svenstaro/upload-release-action@v2 @@ -65,6 +71,6 @@ jobs: repo_token: ${{ secrets.GITHUB_TOKEN }} file: ./dist/tutor asset_name: "${{ steps.release-file.outputs.filename }}" - tag: ${{ github.ref }} + tag: "${{ steps.release-name.release.text }}" overwrite: true body: "${{ steps.release-description.outputs.text }}" diff --git a/CHANGELOG.md b/CHANGELOG.md index 1aa28f2cac2..06b7063240e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,10 +4,11 @@ Note: Breaking changes between versions are indicated by "💥". ## Unreleased +## v13.1.8 (2022-03-18) + - [Bugfix] Fix "evalsymlink failure" during `k8s quickstart` (#611). - [Bugfix] Fix "TypeError: upgrade() got an unexpected keyword argument 'non_interactive'" during `local upgrade`. - ## v13.1.7 (2022-03-17) - [Bugfix] Fix dockerize on arm64 by switching to the [powerman/dockerize](https://github.com/powerman/dockerize) fork (#591). diff --git a/tutor/__about__.py b/tutor/__about__.py index 45cbe60ec2a..e1ffb83ae71 100644 --- a/tutor/__about__.py +++ b/tutor/__about__.py @@ -2,7 +2,7 @@ # Increment this version number to trigger a new release. See # docs/tutor.html#versioning for information on the versioning scheme. -__version__ = "13.1.7" +__version__ = "13.1.8" # The version suffix will be appended to the actual version, separated by a # dash. Use this suffix to differentiate between the actual released version and