Skip to content

Commit 5e609b7

Browse files
authored
Merge branch 'main' into adjust_scripts
2 parents 7ab2f04 + 0040ef6 commit 5e609b7

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

appendix/version.md

+2
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,5 @@
2222
### v1.0.0 @ 2022/04/23
2323

2424
- 最初のリリース
25+
- 箱庭アセットとバージョン (commit hash) 情報
26+
- [hakoniwa-core](https://github.com/toppers/hakoniwa-core) / sha: [2628fdbed6f49f44bc988e65b08858bf67424b79](https://github.com/toppers/hakoniwa-core/tree/2628fdbed6f49f44bc988e65b08858bf67424b79)

utils/check_assets_version.bash

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/bin/bash
2+
3+
assets=("hakoniwa-core")
4+
5+
for ast in ${assets[@]}; do
6+
cd /root/workspace/${ast}
7+
sha=`git rev-parse HEAD`
8+
echo " - [${ast}](https://github.com/toppers/${ast}) / sha: [${sha}](https://github.com/toppers/${ast}/tree/${sha})"
9+
done
10+

0 commit comments

Comments
 (0)