Skip to content

Commit

Permalink
Update publish-release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ChinthakaJ98 authored Dec 20, 2024
1 parent a8fc42e commit b6704fb
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
echo "<settings>
<servers>
<server>
<id>nexus-releases</id>
<id>releases</id>
<username>${{ secrets.NEXUS_USERNAME }}</username>
<password>${{ secrets.NEXUS_PASSWORD }}</password>
</server>
Expand All @@ -40,6 +40,18 @@ jobs:
run: |
git config --global user.name ${{ secrets.WSO2_INTEGRATION_BOT_USERNAME }}
git config --global user.email ${{ secrets.WSO2_INTEGRATION_BOT_EMAIL }}
- name: Download wso2-jsmpp JAR
run: |
curl -L -o wso2-jsmpp-3.0.0-wso2v3.jar https://github.com/wso2/wso2-jsmpp/releases/download/3.0.0-wso2v3/wso2-jsmpp-3.0.0-wso2v3.jar
- name: Install wso2-jsmpp to Maven Local
run: |
mvn install:install-file \
-Dfile=wso2-jsmpp-3.0.0-wso2v3.jar \
-DgroupId=org.wso2 \
-DartifactId=wso2-jsmpp \
-Dversion=3.0.0-wso2v3 \
-Dpackaging=jar
- name: Build artifacts
run: |
mvn clean install
Expand Down

0 comments on commit b6704fb

Please sign in to comment.