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:21:26 UTC

[camel-karavan] branch backward-0.0.9 created (now b3909b4)

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

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


      at b3909b4  Create backward.yml

This branch includes the following new commits:

     new b3909b4  Create backward.yml

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


[camel-karavan] 01/01: Create backward.yml

Posted by ma...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

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

    Create backward.yml
---
 .github/workflows/backward.yml | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/.github/workflows/backward.yml b/.github/workflows/backward.yml
new file mode 100644
index 0000000..d5cda9c
--- /dev/null
+++ b/.github/workflows/backward.yml
@@ -0,0 +1,31 @@
+name: Manual Build Version 0.0.9
+
+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 }}