You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by ke...@apache.org on 2021/09/02 16:08:29 UTC

[skywalking-banyandb-java-client] 01/01: Deploy snapshot packages on push

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 8a5673c8b084b3552ba59c7f42f50d3e004b442a
Author: kezhenxu94 <ke...@apache.org>
AuthorDate: Fri Sep 3 00:08:09 2021 +0800

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

diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml
new file mode 100644
index 0000000..872bb43
--- /dev/null
+++ b/.github/workflows/deploy.yaml
@@ -0,0 +1,37 @@
+# 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
+
+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..13d1118
--- /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_USER}</username>
+            <password>${env.NEXUS_PW}</password>
+        </server>
+    </servers>
+</settings>