Add automated release workflow #17
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: Maven CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 8 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '8' | |
distribution: 'temurin' | |
cache: 'maven' | |
- id: build | |
name: Build with Maven | |
run: | | |
mvn compile | |
echo "version=$(mvn -q -Dexec.executable=echo -Dexec.args='${project.version}' --non-recursive exec:exec)" >> "$GITHUB_OUTPUT" | |
- name: Test with Maven | |
run: mvn test --batch-mode --fail-at-end | |
- name: Publish Test Report | |
if: success() || failure() | |
uses: scacap/action-surefire-report@v1 | |
- name: Package with maven | |
run: mvn package | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: vinted-kafka-connect-vespa-${{ steps.build.outputs.version }} | |
path: | | |
target/components/packages/vinted-kafka-connect-vespa-${{ steps.build.outputs.version }}.zip | |
target/components/kafka-connect-vespa-${{ steps.build.outputs.version }}.jar |