Skip to content

Commit

Permalink
Bug fix for handler release github action
Browse files Browse the repository at this point in the history
  • Loading branch information
IsuruMaduranga committed Dec 4, 2023
1 parent ab555f5 commit b8c5fbd
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
1 change: 1 addition & 0 deletions .github/workflows/counting-handler-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,6 @@ jobs:
uses: samuelmeuli/action-maven-publish@v1
with:
directory: ./counter
server_id: wso2.releases
nexus_username: ${{ secrets.NEXUS_USERNAME }}
nexus_password: ${{ secrets.NEXUS_PASSWORD }}
18 changes: 10 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -66,15 +66,17 @@
</repositories>

<distributionManagement>
<snapshotRepository>
<id>wso2.snapshots</id>
<name>Apache Snapshot Repository</name>
<url>https://maven.wso2.org/nexus/content/repositories/snapshots/</url>
</snapshotRepository>
<repository>
<id>nexus-releases</id>
<name>WSO2 Release Distribution Repository</name>
<url>https://maven.wso2.org/nexus/service/local/staging/deploy/maven2/</url>
<id>wso2.releases</id>
<name>WSO2 Releases Repository</name>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
<url>https://maven.wso2.org/nexus/content/repositories/releases/</url>
<layout>default</layout>
</repository>
</distributionManagement>
</project>

0 comments on commit b8c5fbd

Please sign in to comment.