Skip to content

Commit eb9ff10

Browse files
committed
Merge branch 'stable'
2 parents f8dedf9 + aa82914 commit eb9ff10

File tree

2 files changed

+14
-9
lines changed

2 files changed

+14
-9
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,9 @@ jobs:
5959
with:
6060
setAllVars: true
6161

62-
- name: ⚙️ Calculate x.y.z version
63-
run: echo "{SIMPLE_VERSION}=$((NBGV_VersionMajor)).$((NBGV_VersionMinor)).$((NBGV_BuildNumber+1))" >> $GITHUB_ENV
64-
65-
- run: echo "$SIMPLE_VERSION"
66-
62+
- name: ⚙️ Calculate release version in X.Y.Z format
63+
run: echo "SIMPLE_VERSION=$((NBGV_VersionMajor)).$((NBGV_VersionMinor)).$((NBGV_BuildNumber+1))" >> $GITHUB_ENV
64+
6765
- name: ⚙️ Setup dotnet 5.0.x
6866
uses: actions/setup-dotnet@v1
6967
with:
@@ -72,7 +70,7 @@ jobs:
7270
- name: 🛠️ Update changelog
7371
uses: thomaseizinger/[email protected]
7472
with:
75-
version: ${{ env.NBGV_SimpleVersion }}
73+
version: ${{ env.SIMPLE_VERSION }}
7674

7775
- name: 🛠️ Update changelog compare URLs
7876
shell: bash
@@ -103,8 +101,8 @@ jobs:
103101
env:
104102
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
105103
with:
106-
tag_name: v${{ env.NBGV_SimpleVersion }}
107-
name: Release ${{ env.NBGV_SimpleVersion }}
104+
tag_name: v${{ env.SIMPLE_VERSION }}
105+
name: Release ${{ env.SIMPLE_VERSION }}
108106
body: ${{ steps.changelog_reader.outputs.changes }}
109107
draft: false
110108
prerelease: ${{ env.NBGV_PublicRelease == 'False' }}

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.20.20] - 2021-04-24
11+
12+
asdfa sadf
13+
asdf asdf asdf asdf asdf
14+
1015
## [1.20.16] - 2021-04-24
1116

1217
foo bar baz
@@ -88,7 +93,9 @@ more of that
8893

8994
- Something was added.
9095

91-
[Unreleased]: https://github.com/bUnit-dev/workflows/compare/v1.20.16...HEAD
96+
[Unreleased]: https://github.com/bUnit-dev/workflows/compare/v1.20.20...HEAD
97+
98+
[1.20.20]: https://github.com/bUnit-dev/workflows/compare/v1.20.16...v1.20.20
9299

93100
[1.20.16]: https://github.com/bUnit-dev/workflows/compare/v1.20.13...v1.20.16
94101

0 commit comments

Comments
 (0)