Merge pull request #36 from BluevaDevelopment/dependabot/github_actio… #51
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: Java CI with Maven | |
| on: | |
| push: | |
| branches: [main] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Step 1 - Checkout main branch from GitHub | |
| uses: actions/checkout@v4.2.2 | |
| - name: Step 2 - Set up JDK 17 | |
| uses: actions/setup-java@v4.5.0 | |
| with: | |
| java-version: 17 | |
| distribution: 'corretto' | |
| - name: Step 3 - Build Maven Project | |
| run: | | |
| mvn -B package --file pom.xml | |
| mkdir staging && cp target/*.jar staging | |
| - name: Step 4 - Set up a cache for Maven | |
| uses: actions/cache@v4.1.2 | |
| with: | |
| path: ~/.m2 | |
| key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} | |
| restore-keys: ${{ runner.os }}-m2 | |
| - name: Step 5 - Persist workflow data as artificats | |
| uses: actions/upload-artifact@v4.3.4 | |
| with: | |
| name: 'BlueCore' | |
| path: staging | |
| retention-days: 30 |