Skip to content

Commit fb173d9

Browse files
committed
Fix publish issue
1 parent 9c98ecc commit fb173d9

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

pom.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,11 @@
2828
<module>grpc-rest-proxy-example</module>
2929
</modules>
3030

31+
<distributionManagement>
32+
<repository>
33+
<id>github</id>
34+
<name>GitHub Packages</name>
35+
<url>https://maven.pkg.github.com/wangzw/grpc-rest-proxy</url>
36+
</repository>
37+
</distributionManagement>
3138
</project>

settings.xml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
4+
<servers>
5+
<server>
6+
<id>github</id>
7+
<username>${env.GITHUB_ACTOR}</username>
8+
<password>${env.GITHUB_TOKEN}</password>
9+
</server>
10+
</servers>
11+
</settings>

0 commit comments

Comments
 (0)