Skip to content

Commit

Permalink
Release 0.3.2 (#414)
Browse files Browse the repository at this point in the history
## What's Changed
* 395 sim fix get_webpage_with_principle return by @cristiam86 in
#396
* 399 sim fe scrollable home screen by @denishacquin in
#400
* SIM-FE Improve validators creation by @denishacquin in
#398
* hotfix: print contract init errors by @AgustinRamiroDiaz in
#407
* 334-SIM-generate releases and versions when merging to main by
@AgustinRamiroDiaz in
#392
* 393 sim use contract abi to generate methods and parameters by
@denishacquin in #394
* SIM-DB-Decouple startup script in order to use plain postgres DB by
@AgustinRamiroDiaz in
#410

**Full Changelog**:
v0.3.1...0.3.2

Signed-off-by: Agustín Ramiro Díaz <[email protected]>
  • Loading branch information
AgustinRamiroDiaz committed Aug 28, 2024
1 parent 67cd3c4 commit 29c5d71
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/release-from-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Create Release from main
on:
push:
branches:
- main
- agustin/hotfix/gh-action-release

jobs:
release-main:
Expand All @@ -19,9 +19,13 @@ jobs:
# ...
- name: Create release
run: |
set -eo pipefail
commit_msg=$(git log -1 --pretty=%B)
echo $commit_msg
semver=$(echo $commit_msg | head -n -1 | awk '{print $2}')
echo $semver
echo $commit_msg | tail -n +3 > body.txt
cat body.txt
gh release create $semver --title $semver -F body.txt --prerelease
# TODO: remove prerelease flag after testing ^^^^^^^^^^^^
env:
Expand Down
1 change: 1 addition & 0 deletions body.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
test

0 comments on commit 29c5d71

Please sign in to comment.