Skip to content

Commit a4ecc3c

Browse files
committed
add command with exec sample for bump and post release craft scripts
1 parent 6658b3b commit a4ecc3c

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

scripts/bump-version.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
#!/bin/bash
2+
3+
# ./scripts/bump-version.sh <old version> <new version>
4+
# eg ./scripts/bump-version.sh "6.0.0-alpha.1" "6.0.0-alpha.2"
5+
26
set -eux
37

48
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"

scripts/post-release.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
#!/bin/bash
2+
3+
# ./scripts/post-release.sh <old version> <new version>
4+
# eg ./scripts/post-release.sh "6.0.0-alpha.1" "6.0.0-alpha.2"
5+
26
set -eux
37

48
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"

0 commit comments

Comments
 (0)