Publish Release #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish Release | |
on: | |
workflow_dispatch: | |
jobs: | |
Ubuntu: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
with: | |
token: ${{ secrets.WSO2_INTEGRATION_BOT_TOKEN }} | |
fetch-depth: 0 | |
- name: Set up JDK 11 | |
uses: joschi/setup-jdk@v2 | |
with: | |
distribution: 'adopt' | |
java-version: 11 | |
- name: Extract project version | |
run: | | |
VERSION=$(grep -oPm1 "(?<=<version>)[^<]+" pom.xml | sed 's/-SNAPSHOT$//') | |
VERSION_TAG="v$VERSION" | |
echo "VERSION_TAG=$VERSION_TAG" >> $GITHUB_ENV | |
- name: Configure Maven settings file | |
run: | | |
mkdir -p ~/.m2 | |
echo "<settings> | |
<servers> | |
<server> | |
<id>releases</id> | |
<username>${{ secrets.NEXUS_USERNAME }}</username> | |
<password>${{ secrets.NEXUS_PASSWORD }}</password> | |
</server> | |
</servers> | |
</settings>" > ~/.m2/settings.xml | |
- name: Configure git credentials | |
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 | |
- name: Deploy artifacts with Maven | |
env: | |
GITHUB_TOKEN: ${{ secrets.WSO2_INTEGRATION_BOT_TOKEN }} | |
run: | | |
mvn --batch-mode release:prepare release:perform -Dtag=${{ env.VERSION_TAG }} | |
- name: Create Github Release with Assets | |
env: | |
GITHUB_TOKEN: ${{ secrets.WSO2_INTEGRATION_BOT_TOKEN }} | |
run: | | |
find target/ -type f -name '*-SNAPSHOT.zip' -exec rm -f {} \; | |
gh release create "${{ env.VERSION_TAG }}" \ | |
--repo="$GITHUB_REPOSITORY" \ | |
--title="${{ env.VERSION_TAG }}" \ | |
--generate-notes \ | |
target/*.zip |