You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ma...@apache.org on 2022/03/23 21:36:13 UTC

[camel-karavan] branch main updated: Create backward.yml (#230)

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

marat pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-karavan.git


The following commit(s) were added to refs/heads/main by this push:
     new f702ebc  Create backward.yml (#230)
f702ebc is described below

commit f702ebcead243e87fc02ff24f6afe3065dd25a57
Author: Marat Gubaidullin <ma...@gmail.com>
AuthorDate: Wed Mar 23 17:36:07 2022 -0400

    Create backward.yml (#230)
    
    * Create backward.yml
    
    * Update backward.yml
    
    * Update backward.yml
---
 .github/workflows/backward.yml | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

diff --git a/.github/workflows/backward.yml b/.github/workflows/backward.yml
new file mode 100644
index 0000000..94b266c
--- /dev/null
+++ b/.github/workflows/backward.yml
@@ -0,0 +1,34 @@
+name: Temporary Manual Build Version 0.0.9
+
+on:
+  workflow_dispatch:
+
+jobs:
+  build:
+
+    runs-on: ubuntu-latest
+
+    steps:
+      - name: Checkout
+        uses: actions/checkout@v3
+        with:
+          ref: 8108a1b0fc54cf7f9dec36dc9ec101adceb75f56
+
+      - name: Set up JDK 11
+        uses: actions/setup-java@v1
+        with:
+          java-version: 11
+
+      - name: Generate Karavan UI model and API, Kamelets and Components
+        run: |
+          mvn clean compile exec:java -f karavan-generator \
+          -Dexec.mainClass="org.apache.camel.karavan.generator.KaravanGenerator"
+
+      - name: Build Karavan standalone
+        run: |
+          mvn package -f karavan-app -DskipTest \
+          -Dquarkus.container-image.build=true \
+          -Dquarkus.container-image.push=true \
+          -Dquarkus.container-image.image=ghcr.io/${GITHUB_REPOSITORY}:0.0.9 \
+          -Dquarkus.container-image.username=${{ github.actor }} \
+          -Dquarkus.container-image.password=${{ secrets.GITHUB_TOKEN }}