Skip to content

Commit

Permalink
Update version 0.0.6 -> 0.0.7
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
coditory-bot authored and ogesaku committed Jan 26, 2023
1 parent 4e1733b commit 5625bbb
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,12 @@ jobs:
-H "Accept: application/vnd.github+json" \
/repos/${{ github.repository }}/actions/runs?status=success\&head_sha=${{ github.sha }} \
| jq 'limit(1; .workflow_runs[] | select(.name == "Build" and .conclusion == "success"))')"
if [ -z "$BUILD_SUCCESS" ]; then
echo "Commit did not pass Build!"
declare -r LAST_AUTHOR="$(gh api \
-H "Accept: application/vnd.github+json" \
/repos/${{ github.repository }}/commits/${{ github.sha }} \
| jq -r '.author.login')"
if [ "$LAST_AUTHOR" != "coditory-bot" ] && [ -z "$BUILD_SUCCESS" ]; then
echo "Last commit did not pass Build!"
exit 1
fi
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Add to your `build.gradle`:

```gradle
dependencies {
implementation "com.coditory.quark:quark-i18n:0.0.6"
implementation "com.coditory.quark:quark-i18n:0.0.7"
}
```

Expand Down
5 changes: 3 additions & 2 deletions build-logic/src/main/kotlin/build.publish.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,18 @@ java {
}

group = "com.coditory.quark"
description = "Coditory Quark i18n - Message internationalization library"

publishing {
publications {
create<MavenPublication>("maven") {
groupId = "com.coditory.quark"
groupId = project.group.toString()
artifactId = project.name
from(components["java"])

pom {
name.set(project.name)
description.set("Coditory Quark i18n - Message internationalization library")
description.set(project.description)
url.set("https://github.com/coditory/quark-i18n")
organization {
name.set("Coditory")
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=0.0.6
version=0.0.7

0 comments on commit 5625bbb

Please sign in to comment.