Maven artifact publish #21
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: Java CI | |
on: | |
workflow_dispatch: | |
permissions: # Global permissions configuration starts here | |
contents: write | |
pull-requests: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout this repo | |
uses: actions/checkout@v4 | |
- name: Set up JDK 1.8 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'adopt' | |
java-version: '8' | |
- name: Install xmlstarlet | |
run: sudo apt-get install -y xmlstarlet | |
- name: Build with Gradle | |
run: | | |
bash ./gradlew build | |
bash ./gradlew publishToMavenLocal | |
- name: List build directory for debugging | |
run: ls -R ~/.m2 | |
- name: Extract version from generated POM file | |
id: extract_version | |
run: | | |
xml_file=$(find ~/.m2/repository/org/tdf/ -type f -name "*.pom" -print -quit) | |
VERSION=$(xmlstarlet sel -N xmlns="http://maven.apache.org/POM/4.0.0" -t -v "//xmlns:project/xmlns:version" "$xml_file") | |
echo "VERSION=$VERSION" >> $GITHUB_ENV | |
- name: Checkout artifact repo | |
uses: actions/checkout@v4 | |
with: | |
repository: 'RiV-chain/artifact' | |
ref: ${{ github.head_ref }} | |
fetch-depth: 0 | |
token: ${{ secrets.MAVEN_PAT }} | |
- name: Create package directories | |
run: | | |
mkdir -p org/tdf/${{ github.event.repository.name }}/${{ env.VERSION }} | |
- name: Copy JAR, POM, SHA-1, and MD5 files | |
run: | | |
cp -r ~/.m2/repository/org . | |
mv org/tdf/${{ github.event.repository.name }}/maven-metadata-local.xml org/tdf/${{ github.event.repository.name }}/maven-metadata.xml | |
sha1sum org/tdf/${{ github.event.repository.name }}/${{ env.VERSION }}/${{ github.event.repository.name }}-${{ env.VERSION }}.jar > org/tdf/${{ github.event.repository.name }}/${{ env.VERSION }}/${{ github.event.repository.name }}-${{ env.VERSION }}.jar.sha1 | |
md5sum org/tdf/${{ github.event.repository.name }}/${{ env.VERSION }}/${{ github.event.repository.name }}-${{ env.VERSION }}.jar > org/tdf/${{ github.event.repository.name }}/${{ env.VERSION }}/${{ github.event.repository.name }}-${{ env.VERSION }}.jar.md5 | |
sha1sum org/tdf/${{ github.event.repository.name }}/${{ env.VERSION }}/${{ github.event.repository.name }}-${{ env.VERSION }}.pom > org/tdf/${{ github.event.repository.name }}/${{ env.VERSION }}/${{ github.event.repository.name }}-${{ env.VERSION }}.pom.sha1 | |
md5sum org/tdf/${{ github.event.repository.name }}/${{ env.VERSION }}/${{ github.event.repository.name }}-${{ env.VERSION }}.pom > org/tdf/${{ github.event.repository.name }}/${{ env.VERSION }}/${{ github.event.repository.name }}-${{ env.VERSION }}.pom.md5 | |
- name: Commit and push files | |
run: | | |
git config user.name "vikulin" | |
git config user.email "[email protected]" | |
git add . | |
git commit -m "Add build artifacts for version ${{ env.VERSION }}" | |
- name: Push changes | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.MAVEN_PAT }} | |
repository: RiV-chain/artifact | |
force_with_lease: true |