build: bump version before executing build task (#274)

This commit is contained in:
8cAyqpVKio 2023-01-06 06:18:24 +09:00 committed by GitHub
parent 499a4deab3
commit 954e60191e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -29,8 +29,6 @@ jobs:
with:
node-version: "latest"
cache: 'npm'
- name: Build with Gradle
run: ./gradlew build --no-daemon
- name: Setup semantic-release
run: npm install semantic-release @saithodev/semantic-release-backmerge @semantic-release/git @semantic-release/changelog gradle-semantic-release-plugin -D
- name: Release

View File

@ -51,3 +51,5 @@ dependencies {
compileOnly("com.squareup.okhttp3:okhttp:4.10.0")
compileOnly("com.squareup.retrofit2:retrofit:2.9.0")
}
tasks.register("publish") { dependsOn("build") }