Update download milestone in README #102
This file contains hidden or 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: Dev Build | |
| on: | |
| push: | |
| branches: | |
| - '**' # Run on every branch | |
| jobs: | |
| dev-build: | |
| name: Build Dev Snapshot | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 📦 Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: ☕ Set up Java | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: temurin | |
| java-version: '17' | |
| - name: 🏗 Generate Dev Version | |
| id: genver | |
| run: | | |
| COMMIT_SHA=$(git rev-parse --short HEAD) | |
| DEV_VERSION="${COMMIT_SHA}-dev" | |
| echo "Using version: $DEV_VERSION" | |
| echo "DEV_VERSION=$DEV_VERSION" >> $GITHUB_ENV | |
| - name: 🧪 Build Dev JAR with Maven | |
| run: mvn -B clean package -Drevision=${{ env.DEV_VERSION }} | |
| - name: 📤 Upload built Dev JARs | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: dev-build-${{ env.DEV_VERSION }} | |
| path: | | |
| target/*.jar | |
| if-no-files-found: error |