Skip to content

Commit

Permalink
improve release ci
Browse files Browse the repository at this point in the history
  • Loading branch information
vendelieu committed Sep 8, 2024
1 parent 6f37014 commit 41d50ea
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ jobs:
- name: Replace ksp plugin version
run: |
sed -i -E 's/id\("com\.google\.devtools\.ksp"\)\s*version\s*"[^"]+"/id("com.google.devtools.ksp") version "$KSP_VERSION"/g' README.md
sed -i -E "s/id\(\"com\.google\.devtools\.ksp\"\)\s*version\s*\"[^\"]+\"/id(\"com.google.devtools.ksp\") version \"$KSP_VERSION\"/g" README.md
- name: Push changes
uses: stefanzweifel/git-auto-commit-action@v5
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ build.gradle.kts example:
```gradle
plugins {
// ...
id("com.google.devtools.ksp") version "$KSP_VERSION"
id("com.google.devtools.ksp") version "2.0.20-1.0.25"
id("eu.vendeli.telegram-bot") version "7.3.1"
}
```
Expand All @@ -32,7 +32,7 @@ To set up the project without using the plugin, you need to add a dependency and
```gradle
plugins {
// ...
id("com.google.devtools.ksp") version "$KSP_VERSION"
id("com.google.devtools.ksp") version "2.0.20-1.0.25"
}
dependencies {
Expand Down

0 comments on commit 41d50ea

Please sign in to comment.