Skip to content

Commit

Permalink
fix version
Browse files Browse the repository at this point in the history
  • Loading branch information
vendelieu committed Aug 20, 2024
1 parent 9c6ba7c commit 6aeb8d8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ jobs:
ref: ${{ github.head_ref }}
- uses: jacobtomlinson/gha-find-replace@v3
with:
find: '[:"]([0-9]+\.[0-9]+\.[0-9]+)\"'
replace: "${{ needs.version.outputs.version }}"
find: '([:"])([0-9]+\.[0-9]+\.[0-9]+)\"'
replace: "${1}${{ needs.version.outputs.version }}\""
include: "**README.md"
- name: Push changes
uses: stefanzweifel/git-auto-commit-action@v5
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ build.gradle.kts example:
plugins {
// ...
id("com.google.devtools.ksp") version "2.0.10-1.0.24"
id("eu.vendeli.telegram-bot") version 7.2.0
id("eu.vendeli.telegram-bot") version "7.2.0"
}
```

Expand All @@ -37,8 +37,8 @@ plugins {
dependencies {
// ...
implementation("eu.vendeli:telegram-bot7.2.0)
ksp("eu.vendeli:ksp7.2.0)
implementation("eu.vendeli:telegram-bot:7.2.0")
ksp("eu.vendeli:ksp:7.2.0")
}
```

Expand Down

0 comments on commit 6aeb8d8

Please sign in to comment.