Skip to content

Commit 1186376

Browse files
committed
On branch edburns/dd-2785864-pre-public-non-code-changes
modified: .github/workflows/publish-maven.yml modified: src/site/markdown/index.md @brunoborges wrote: > Fix artifactId
1 parent 144ea1b commit 1186376

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/publish-maven.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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)

src/site/markdown/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)