Skip to content

Commit

Permalink
[release] 20240520 4
Browse files Browse the repository at this point in the history
  • Loading branch information
stwiname committed May 20, 2024
1 parent 82426c6 commit 863dab6
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,16 @@ jobs:
run: |
if [ -n "${{ github.event.head_commit.message }}" ]
then
echo "commit-message=\"${{ github.event.head_commit.message }}\"" >> "$GITHUB_OUTPUT"
echo "commit-message=${{ github.event.head_commit.message }} >> "$GITHUB_OUTPUT"
else
echo "commit-message=\"$(git log -1 --pretty=%B | head -n 1)\"" >> "$GITHUB_OUTPUT"
commit_message=$(git log -1 --pretty=%B | head -n 1)
echo "commit-message=$commit_message" >> "$GITHUB_OUTPUT"
fi
- name: Debug commit message
run: |
echo "Commit message: ${{ steps.step1.outputs.commit-message }}"
Build-Publish:
name: Build-Publish
needs: pre-ci
Expand Down
1 change: 1 addition & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]


## [4.9.0] - 2024-05-20
### Changed
- Bump common dependencies to latest version
Expand Down
1 change: 1 addition & 0 deletions packages/node-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]


## [10.3.0] - 2024-05-20
### Changed
- Update cache to always flush with a block height and clear after transaction commit (#2386)
Expand Down
1 change: 1 addition & 0 deletions packages/node/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]


## [4.4.2] - 2024-05-20
### Fixed
- Fix load chain types missing some builtins modules
Expand Down

0 comments on commit 863dab6

Please sign in to comment.