This is an automated email from the ASF dual-hosted git repository.

kezhenxu94 pushed a commit to branch deploy
in repository 
https://gitbox.apache.org/repos/asf/skywalking-banyandb-java-client.git

commit e7c5f3fd72f922f81082f6545c8771113d8932f2
Author: kezhenxu94 <[email protected]>
AuthorDate: Fri Sep 3 00:08:09 2021 +0800

    Deploy snapshot packages on push
---
 .github/workflows/deploy.yaml | 41 +++++++++++++++++++++++++++++++++++++++++
 maven-settings.xml            | 30 ++++++++++++++++++++++++++++++
 2 files changed, 71 insertions(+)

diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml
new file mode 100644
index 0000000..72407cb
--- /dev/null
+++ b/.github/workflows/deploy.yaml
@@ -0,0 +1,41 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+name: Deploy Snapshot
+
+on:
+  push:
+    branches:
+      - main
+      - deploy
+
+env:
+  NEXUS_USERNAME: ${{ secrets.NEXUS_USER }}
+  NEXUS_PASSWORD: ${{ secrets.NEXUS_PW }}
+
+jobs:
+  deploy-snapshot:
+    name: Deploy Snapshot
+    runs-on: ubuntu-latest
+    timeout-minutes: 20
+    steps:
+      - uses: actions/checkout@v2
+        with:
+          submodules: true
+      - name: Deploy
+        run: |
+          ./mvnw --batch-mode --settings maven-settings.xml clean deploy \
+                 -Dmaven.test.skip -Dcheckstyle.skip 
-DretryFailedDeploymentCount=5
diff --git a/maven-settings.xml b/maven-settings.xml
new file mode 100644
index 0000000..7b595ad
--- /dev/null
+++ b/maven-settings.xml
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ Licensed to the Apache Software Foundation (ASF) under one or more
+  ~ contributor license agreements.  See the NOTICE file distributed with
+  ~ this work for additional information regarding copyright ownership.
+  ~ The ASF licenses this file to You under the Apache License, Version 2.0
+  ~ (the "License"); you may not use this file except in compliance with
+  ~ the License.  You may obtain a copy of the License at
+  ~
+  ~     http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing, software
+  ~ distributed under the License is distributed on an "AS IS" BASIS,
+  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  ~ See the License for the specific language governing permissions and
+  ~ limitations under the License.
+  ~
+  -->
+
+<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0";
+          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+          xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 
http://maven.apache.org/xsd/settings-1.0.0.xsd";>
+    <servers>
+        <server>
+            <id>github</id>
+            <username>${env.NEXUS_USERNAME}</username>
+            <password>${env.NEXUS_PASSWORD}</password>
+        </server>
+    </servers>
+</settings>

Reply via email to