Skip to content

Commit

Permalink
Merge pull request #1524 from dahlia/fix-cd
Browse files Browse the repository at this point in the history
Fix CD
  • Loading branch information
dahlia authored Oct 13, 2021
2 parents 9ef78a4 + d4a9bf8 commit 8ee2184
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
1 change: 1 addition & 0 deletions .github/bin/constants.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/bin/bash

# shellcheck disable=SC2034
solution="Libplanet"
projects=(
"Libplanet.Stun"
"Libplanet"
Expand Down
2 changes: 1 addition & 1 deletion .github/bin/dist-github-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ github_repo="${GITHUB_REPOSITORY#*/}"
--user "$github_user" \
--repo "$github_repo" \
--tag "$tag" \
--name "${projects[0]} $tag" \
--name "$solution $tag" \
--description - < obj/release_note.txt

for project in "${projects[@]}"; do
Expand Down
14 changes: 7 additions & 7 deletions .github/bin/github-release.sh
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
#!/bin/bash
# Invoke github-release <https://github.com/aktau/github-release>.
# Invoke github-release <https://github.com/github-release/github-release>.
set -e

if [[ ! -f /tmp/bin/linux/amd64/github-release ]]; then
wget -O /tmp/github-release.tar.bz2 \
https://github.com/aktau/github-release/releases/download/v0.7.2/linux-amd64-github-release.tar.bz2
tar xvfj /tmp/github-release.tar.bz2 -C /tmp
rm /tmp/github-release.tar.bz2
if [[ ! -f /tmp/github-release ]]; then
wget -O /tmp/github-release.bz2 \
https://github.com/github-release/github-release/releases/download/v0.10.0/linux-amd64-github-release.bz2
bzip2 -d /tmp/github-release.bz2
chmod +x /tmp/github-release
fi

/tmp/bin/linux/amd64/github-release "$@"
/tmp/github-release "$@"
2 changes: 1 addition & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ Released on October 13, 2021.
- Added `StoreExtensions.GetStateRootHash()` extension method.
[[#1128], [#1146], [#1492]]
- Added `DelayedRenderer<T>.HashAlgorithmGetter` property. [[#1492]]
- `BlockDigest` became to implement `IBlockExcerpt`.
- `BlockDigest` became to implement `IBlockExcerpt`. [[#1492]]
- Added `InvalidBlockPublicKeyException` class. [[#1457], [#1507]]
- Added `InvalidBlockSignatureException` class. [[#1457], [#1507]]

Expand Down

0 comments on commit 8ee2184

Please sign in to comment.