We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19d771c commit b7643a3Copy full SHA for b7643a3
bin/release.sh
@@ -10,6 +10,13 @@ then
10
fi
11
12
CURRENT_BRANCH="5.5"
13
+VERSION=$1
14
+
15
+# Always prepend with "v"
16
+if [[ $VERSION != v* ]]
17
+then
18
+ VERSION="v$VERSION"
19
+fi
20
21
for REMOTE in auth broadcasting bus cache config console container contracts cookie database encryption events filesystem hashing http log mail notifications pagination pipeline queue redis routing session support translation validation view
22
do
@@ -29,7 +36,7 @@ do
29
36
git clone $REMOTE_URL .
30
37
git checkout "$CURRENT_BRANCH";
31
38
32
- git tag $1
39
+ git tag $VERSION
33
40
git push origin --tags
34
41
)
35
42
done
0 commit comments