Feature: Configure CI/CD #5
Workflow file for this run
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 Maven Build & Publish Artifact | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build_test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: maven | |
- name: Build with Maven | |
run: mvn -B package --file pom.xml | |
publish: | |
runs-on: ubuntu-latest | |
needs: build_test | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: Verify with Maven | |
run: mvn --batch-mode --update-snapshots verify | |
- name: Create staging directory | |
run: mkdir staging | |
- name: Copy JAR to staging | |
run: cp target/*.jar staging | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Package | |
path: staging |