Skip to content

Commit

Permalink
v13.1.8 (2022-03-18)
Browse files Browse the repository at this point in the history
- [Bugfix] Fix "evalsymlink failure" during `k8s quickstart` (overhangio#611).
- [Bugfix] Fix "TypeError: upgrade() got an unexpected keyword argument 'non_interactive'" during `local upgrade`.
  • Loading branch information
regisb committed Mar 24, 2022
1 parent 6e2cef0 commit e6c4fdf
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 8 deletions.
18 changes: 12 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,24 +47,30 @@ 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
with:
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 }}"
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down
2 changes: 1 addition & 1 deletion tutor/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e6c4fdf

Please sign in to comment.