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

ilgrosso pushed a commit to branch 3_0_X
in repository https://gitbox.apache.org/repos/asf/syncope.git


The following commit(s) were added to refs/heads/3_0_X by this push:
     new 024c7d8990 Push Docker images to DockerHub via GH actions
024c7d8990 is described below

commit 024c7d899098097004c18b71bac8c668866bb48f
Author: Francesco Chicchiriccò <[email protected]>
AuthorDate: Tue Dec 17 12:19:18 2024 +0100

    Push Docker images to DockerHub via GH actions
---
 .github/workflows/dockerhub.yml | 51 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 51 insertions(+)

diff --git a/.github/workflows/dockerhub.yml b/.github/workflows/dockerhub.yml
new file mode 100644
index 0000000000..37ba0629b2
--- /dev/null
+++ b/.github/workflows/dockerhub.yml
@@ -0,0 +1,51 @@
+# 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: "Push to DockerHub"
+
+on:
+  push:
+    branches:
+      - 3_0_X
+    tags:
+      - syncope-3.0.*
+
+jobs:
+  push2DockerHub:
+    runs-on: ubuntu-latest
+
+    steps:
+    - name: Checkout repository
+      uses: actions/checkout@v4
+    - name: Setup Java JDK
+      uses: actions/setup-java@v4
+      with:
+        distribution: 'zulu'
+        java-version: 11
+    - name: Setup Maven
+      uses: stCarolas/setup-maven@v5
+      with:
+        maven-version: 3.9.6
+    - uses: actions/cache@v4
+      with:
+        path: ~/.m2/repository
+        key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
+        restore-keys: |
+          ${{ runner.os }}-maven-
+    - name: Build
+      run: mvn -U -T 1C -P 'skipTests,all,docker'
+    - name: 'Push to DockerHub'
+      run: mvn -f docker/pom.xml docker:push 
-Ddocker.username=${{secrets.DOCKERHUB_USER}} 
-Ddocker.password=${{secrets.DOCKERHUB_TOKEN}}

Reply via email to