♻️ refactor release flow to publish artifacts to github release #196
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: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDKs 8, 11, 17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: | | |
8 | |
17 | |
11 | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v2 | |
- name: Execute Gradle build | |
run: ./gradlew build | |
- name: "Generate Coverage Badge" | |
id: jacoco | |
uses: cicirello/jacoco-badge-generator@v2 | |
with: | |
generate-branches-badge: true | |
jacoco-csv-file: build/reports/jacoco/test/jacocoTestReport.csv | |
- name: "Log coverage percentage" | |
run: | | |
echo "coverage = ${{ steps.jacoco.outputs.coverage }}" | |
echo "branch coverage = ${{ steps.jacoco.outputs.branches }}" | |
- name: "Commit the JaCoCo badge (if it changed)" | |
run: | | |
if [[ `git status --porcelain` ]]; then | |
git config --global user.name 'Jacoco Coverage Update Action' | |
git config --global user.email '[email protected]' | |
git add -A | |
git commit -m "Autogenerated JaCoCo coverage badge" | |
git push | |
fi | |
- name: "Upload JaCoCo coverage report" | |
uses: actions/upload-artifact@v4 | |
with: | |
name: jacoco-report | |
path: build/reports/jacoco/test/html/ |