Skip to content

Commit

Permalink
update publish github action
Browse files Browse the repository at this point in the history
  • Loading branch information
ravisingal committed Sep 11, 2024
1 parent b2c1e95 commit 9e40478
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,11 @@ jobs:
echo ${{ steps.version.outputs.version }}
find . -name '*.jar'
mkdir pinot-${{ steps.version.outputs.version }}
mkdir pinot-${{ steps.version.outputs.version }}/jars
mkdir pinot-${{ steps.version.outputs.version }}/distribution
echo
cp pinot-distribution/target/*.jar pinot-${{ steps.version.outputs.version }}
cp -r ./pinot-distribution/target/apache-pinot-1.2.0-bin/apache-pinot-1.2.0-bin/* pinot-${{ steps.version.outputs.version }}
cp pinot-distribution/target/*.jar pinot-${{ steps.version.outputs.version }}/jars
cp -r ./pinot-distribution/target/apache-pinot-1.2.0-bin/apache-pinot-1.2.0-bin/* pinot-${{ steps.version.outputs.version }}/distribution
tar cvfz pinot-${{ steps.version.outputs.version }}.tar.gz pinot-${{ steps.version.outputs.version }}
- name: Upload Packages
Expand Down

0 comments on commit 9e40478

Please sign in to comment.