Bump version to 0.7.6 #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: build-commit | |
on: [ push ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Extract Current Branch Name | |
shell: bash | |
# bash pattern expansion to grab the branch name without the slashes | |
run: ref="${GITHUB_REF#refs/heads/}" && echo "branch=${ref////-}" >> $GITHUB_OUTPUT | |
id: ref | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Validate Gradle Wrapper | |
uses: gradle/actions/wrapper-validation@v3 | |
- name: Make Gradle Wrapper Executable | |
run: chmod +x ./gradlew | |
- name: Setup JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 17 | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@v3 | |
with: | |
cache-read-only: false | |
- name: Gradle Build | |
run: ./gradlew check build | |
- name: Capture Build Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: FluxApi-artifacts-${{ steps.ref.outputs.branch }} | |
path: build/libs/*.jar |