From 9e49ec5dd7347150e389ff607073097bc92234c9 Mon Sep 17 00:00:00 2001 From: Matej Novotny Date: Mon, 1 Jul 2024 19:21:49 +0200 Subject: [PATCH] Release setup changes - include dist build and artifact upload in the release CI job --- .github/workflows/release.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2336e7af84..3fa8dcca34 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -54,4 +54,11 @@ jobs: git rebase release mvn -B release:perform -Drelease git push - git push --tags \ No newline at end of file + git push --tags + cd build + gradle -PweldVersion=${{steps.metadata.outputs.current-version}} -PweldPath=${GITHUB_WORKSPACE} + - name: Upload dist ZIP file + uses: actions/upload-artifact@v4 + with: + name: dist + path: ./build/weld-* \ No newline at end of file