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 ad7b4d5 commit 2d63548Copy full SHA for 2d63548
.gitignore
@@ -3,4 +3,5 @@ build/
3
.idea/
4
node_modules/
5
dist/
6
-gradle.properties
+gradle.properties
7
+.DS_Store
release
@@ -6,9 +6,10 @@ VERSION="$1"
sed -i '' "s/version = \"\(.*\)\"/version = \"$VERSION\"/" lib/build.gradle.kts
sed -i '' "s/com.luissoares:selenium-testing-library:[^\"]*/com.luissoares:selenium-testing-library:$VERSION/" README.md
8
9
-git add lib/build.gradle.kts README.md
10
-git commit -m "Update version to $VERSION"
+git add lib/build.gradle.kts README.md || true
+git commit -m "Update version to $VERSION" || true
11
12
+git push
13
git tag -l | xargs git tag -d
14
git push --delete origin "v$VERSION" || true
15
git tag "v$VERSION" -m "Tag release for version $VERSION"
0 commit comments