Skip to content

Commit 337a4b0

Browse files
authored
Merge pull request #29 from TechnologyEnhancedLearning/feat-try-make-semantic-more-graceful
Feat try make semantic more graceful
2 parents f1d9f78 + f3ff67b commit 337a4b0

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

.github/workflows/dev.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,8 @@ jobs:
169169
echo "Timestamp $timestamp"
170170
171171
echo "shouldnt timestamp but ok for now qqqq"
172-
full_version="${SEMVER_OUTPUT}-${timestamp}"
172+
echo "if you get a tag like 1.1.1-timestamp or :-nonversion-triggering-change it just means there was a chore before "
173+
full_version="${SEMVER_OUTPUT:-nonversion-triggering-change}-${timestamp}"
173174
echo "extracted version $full_version"
174175
echo "dev-semantic-version=$full_version" >> $GITHUB_OUTPUT
175176

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [7.0.4-feat-try-make-semantic-more-graceful.1](https://github.com/TechnologyEnhancedLearning/GitPageBlazorWASM/compare/v7.0.3...v7.0.4-feat-try-make-semantic-more-graceful.1) (2025-04-08)
2+
3+
4+
### Bug Fixes
5+
6+
* **type branch:** should see version number with branch name ([f49478f](https://github.com/TechnologyEnhancedLearning/GitPageBlazorWASM/commit/f49478fd90ca4ca72388c70d3142fc136e531197))
7+
18
## [7.0.3](https://github.com/TechnologyEnhancedLearning/GitPageBlazorWASM/compare/v7.0.2...v7.0.3) (2025-04-08)
29

310

Package.BlazorComponentLibrary/Components/SimpleCounter.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<h3>Simple Counter</h3>
22
Feat123
33
<button class="btn btn-primary" @onclick="IncrementCount">
4-
A Build aaa(@currentCount)
4+
A Build aa(@currentCount)
55
</button>
66

77
@code {

0 commit comments

Comments
 (0)