Skip to content

Commit

Permalink
Bumps release version
Browse files Browse the repository at this point in the history
  • Loading branch information
gerardorodriguezdev committed Jan 25, 2025
1 parent 9aa8fb3 commit 7fb9c88
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: Release Workflow

on:
push:
branches:
- release
tags:
- 'v*'

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
Expand All @@ -18,7 +18,7 @@ jobs:
uses: actions/checkout@v4

- name: Build
uses: ./.github/actions/setup-action
uses: ./.github/actions/build-action

- name: Verify gradle plugin
run: |
Expand Down
4 changes: 4 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,8 @@ dependencies {
tasks.withType<Detekt> detekt@{
setSource(files(project.projectDir))
exclude("**/build/**")
}

tasks.register("releaseVersion") {
println(libs.versions.release.get())
}
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ kmp-binary-compability-validator = "0.17.0"
jvm-test-parameterized = "5.11.0"

# Releases
release = "1.0.5"
release = "1.0.6"

[libraries]
detekt-formatting = { module = "io.gitlab.arturbosch.detekt:detekt-formatting", version.ref = "detekt" }
Expand Down

0 comments on commit 7fb9c88

Please sign in to comment.