-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8d35955
commit f342b72
Showing
2 changed files
with
63 additions
and
4 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
name: Release | ||
|
||
on: | ||
release: | ||
types: [ published ] | ||
|
||
jobs: | ||
release: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
version: ${{steps.build.outputs.version}} | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- run: | | ||
git config user.name github-actions | ||
git config user.email [email protected] | ||
- 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 -B -ntp versions:set -DnewVersion=${{ github.event.release.tag_name }} | ||
mvn -B -V -ntp clean package -DskipTests | ||
- id: project | ||
name: Extract Maven project version | ||
run: echo "version=$(mvn -q -Dexec.executable=echo -Dexec.args='${project.version}' --non-recursive exec:exec)" >> "$GITHUB_OUTPUT" | ||
|
||
- name: Upload files to a GitHub release | ||
uses: svenstaro/[email protected] | ||
with: | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
file: target/components/packages/kafka-connect-vespa-${{ steps.build.outputs.version }}.zip | ||
tag: ${{ steps.build.outputs.version }} | ||
|
||
- 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.project.outputs.version }}.zip | ||
target/components/kafka-connect-vespa-${{ steps.project.outputs.version }}.jar |