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 a55fed4 Delete backward.yml
a55fed4 is described below
commit a55fed4ecac5ab66412cf8a00768fdc8bd2457a8
Author: Marat Gubaidullin <[email protected]>
AuthorDate: Fri Apr 1 14:27:16 2022 -0400
Delete backward.yml
---
.github/workflows/backward.yml | 34 ----------------------------------
1 file changed, 34 deletions(-)
diff --git a/.github/workflows/backward.yml b/.github/workflows/backward.yml
deleted file mode 100644
index 94b266c..0000000
--- a/.github/workflows/backward.yml
+++ /dev/null
@@ -1,34 +0,0 @@
-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 }}