Skip to content

Commit

Permalink
Merge 8915890 into master
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Oct 6, 2022
2 parents fccec24 + 8915890 commit 34daf86
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,11 @@ jobs:
# run: ./gradlew pkgver -q

- name: Get the project version
run: echo "PKGVER=$(./gradlew pkgver -q --console=plain)" >> $GITHUB_ENV
run: |
# warm up (skip progress indicator)
./gradlew pkgver -q
# store version to var
echo "PKGVER=$(./gradlew pkgver -q --console=plain)" >> $GITHUB_ENV
- name: Publish GitHub release
id: publish_github_release
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ plugins {
}

group = "io.github.rtmigo"
version = "0.1.0-dev7"
version = "0.1.0-dev8"

tasks.register("pkgver") {
doLast {
Expand Down

0 comments on commit 34daf86

Please sign in to comment.