File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -111,10 +111,10 @@ jobs:
111111
112112 # Update version in README.md
113113 sed -i "s|<version>[0-9]*\.[0-9]*\.[0-9]*</version>|<version>${VERSION}</version>|g" README.md
114- sed -i "s|copilot-sdk:[0-9]*\.[0-9]*\.[0-9]*|copilot-sdk:${VERSION}|g" README.md
114+ sed -i "s|copilot-sdk-java :[0-9]*\.[0-9]*\.[0-9]*|copilot-sdk-java :${VERSION}|g" README.md
115115
116116 # Update version in jbang-example.java
117- sed -i "s|copilot-sdk:[0-9]*\.[0-9]*\.[0-9]*|copilot-sdk:${VERSION}|g" jbang-example.java
117+ sed -i "s|copilot-sdk-java :[0-9]*\.[0-9]*\.[0-9]*|copilot-sdk-java :${VERSION}|g" jbang-example.java
118118
119119 # Update version in cookbook files (Maven will filter ${project.version} during site generation,
120120 # but we also need the actual version for direct JBang usage)
Original file line number Diff line number Diff line change @@ -22,15 +22,15 @@ Add the dependency to your project:
2222``` xml
2323<dependency >
2424 <groupId >com.github</groupId >
25- <artifactId >copilot-sdk</artifactId >
25+ <artifactId >copilot-sdk-java </artifactId >
2626 <version >${project.version}</version >
2727</dependency >
2828```
2929
3030** Gradle:**
3131
3232``` groovy
33- implementation 'com.github:copilot-sdk:${project.version}'
33+ implementation 'com.github:copilot-sdk-java :${project.version}'
3434```
3535
3636### Quick Example
You can’t perform that action at this time.
0 commit comments