Code merge and Update Build Version 2.2.7 to 2.2.8 #167
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
# Build & Deploy on Tag & Push | |
name: Github Package | |
on: | |
push: | |
tags: | |
["v*.*.*", "v*.*.*-*"] | |
branches: | |
["release-4.*.*", "release-5.*.*", "release-v2.*.*", "master"] | |
pull_request: | |
branches: | |
["release-4.*.*", "release-5.*.*", "release-v2.*.*", "master"] | |
jobs: | |
build-deploy-github: | |
name: Build & Deploy to GitHub | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: 11 | |
distribution: 'temurin' | |
server-id: github | |
server-username: GITHUB_USERNAME | |
server-password: GITHUB_TOKEN | |
- name: Cache Maven packages | |
uses: actions/cache@v2 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} | |
restore-keys: ${{ runner.os }}-m2- | |
- name: Extract version from pom.xml | |
id: version | |
run: | | |
echo ::set-output name=VERSION::$(grep -A 1 '<artifactId>utils</artifactId>' pom.xml | grep -oP '(?<=<version>).*?(?=</version>)') | |
- name: Delete package specific version | |
uses: smartsquaregmbh/[email protected] | |
with: | |
version: ${{ steps.version.outputs.VERSION }} | |
names: | | |
com.uci.utils | |
token: ${{ secrets.TOKEN }} | |
- name: Deploy | |
run: mvn clean install -Pgithub deploy | |
env: | |
GITHUB_USERNAME: ${{ secrets.USERNAME }} | |
GITHUB_TOKEN: ${{ secrets.TOKEN }} |