Skip to content

Commit 2d63548

Browse files
committed
ignore ds store
1 parent ad7b4d5 commit 2d63548

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@ build/
33
.idea/
44
node_modules/
55
dist/
6-
gradle.properties
6+
gradle.properties
7+
.DS_Store

release

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,10 @@ VERSION="$1"
66
sed -i '' "s/version = \"\(.*\)\"/version = \"$VERSION\"/" lib/build.gradle.kts
77
sed -i '' "s/com.luissoares:selenium-testing-library:[^\"]*/com.luissoares:selenium-testing-library:$VERSION/" README.md
88

9-
git add lib/build.gradle.kts README.md
10-
git commit -m "Update version to $VERSION"
9+
git add lib/build.gradle.kts README.md || true
10+
git commit -m "Update version to $VERSION" || true
1111

12+
git push
1213
git tag -l | xargs git tag -d
1314
git push --delete origin "v$VERSION" || true
1415
git tag "v$VERSION" -m "Tag release for version $VERSION"

0 commit comments

Comments
 (0)