This is an automated email from the ASF dual-hosted git repository.
lzljs3620320 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-paimon.git
The following commit(s) were added to refs/heads/master by this push:
new 6d7f5113f [deploy] Publish paimon-shade to snapshot
6d7f5113f is described below
commit 6d7f5113fc91c571ad468f6fc87291fdd258ca37
Author: JingsongLi <[email protected]>
AuthorDate: Wed Apr 5 17:14:27 2023 +0800
[deploy] Publish paimon-shade to snapshot
---
.github/workflows/publish_snapshot.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/publish_snapshot.yml
b/.github/workflows/publish_snapshot.yml
index afbf01994..62b3eedd6 100644
--- a/.github/workflows/publish_snapshot.yml
+++ b/.github/workflows/publish_snapshot.yml
@@ -48,6 +48,8 @@ jobs:
key: snapshot-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
snapshot-maven-
+ - name: Clone Paimon-shade repo
+ run: git clone https://github.com/apache/incubator-paimon-shade.git
/tmp/paimon-shade
- name: Publish snapshot
env:
ASF_USERNAME: ${{ secrets.NEXUS_USER }}
@@ -60,5 +62,9 @@ jobs:
echo "</server></servers></settings>" >> $tmp_settings
./mvnw --settings $tmp_settings clean deploy -Dgpg.skip -Drat.skip
-DskipTests -Papache-release
+
+ mv $tmp_settings /tmp/paimon-shade
+ cd /tmp/paimon-shade
+ ./mvnw --settings $tmp_settings clean deploy -Dgpg.skip -Drat.skip
-DskipTests -Papache-release
rm $tmp_settings