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 1c8c1243 Cleanup
1c8c1243 is described below

commit 1c8c1243fce8b81a0c5202bb65d60eff58ed85e0
Author: Marat Gubaidullin <ma...@talismancloud.io>
AuthorDate: Fri Feb 23 11:32:00 2024 -0500

    Cleanup
---
 .github/workflows/installer.yml | 50 -----------------------------------------
 1 file changed, 50 deletions(-)

diff --git a/.github/workflows/installer.yml b/.github/workflows/installer.yml
deleted file mode 100644
index 7bd9b373..00000000
--- a/.github/workflows/installer.yml
+++ /dev/null
@@ -1,50 +0,0 @@
-name: Installer
-
-on:
-  push:
-    branches: [ main ]
-    paths: ['karavan-web/karavan-installer/**', 
'.github/workflows/installer.yml']
-  workflow_dispatch:
-  pull_request:
-    branches: [ main ]
-
-env:
-  TAG: 4.4.0
-
-jobs:
-  build:
-    runs-on: ubuntu-latest
-    steps:
-      - name: Checkout Karavan
-        uses: actions/checkout@v3
-        with:
-          path: karavan
-
-      - name: Set up JDK 17
-        uses: actions/setup-java@v3
-        with:
-          distribution: adopt
-          java-version: 17
-
-      - name: Cache local Maven repository
-        uses: actions/cache@v3
-        with:
-          path: |
-            ~/.m2/repository
-            !~/.m2/repository/org/apache/camel/karavan
-          key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
-          restore-keys: ${{ runner.os }}-maven-
-      
-      #  Build Karavan installer
-      - name: Build Karavan installer
-        working-directory: ./karavan/karavan-web/karavan-installer
-        run: |
-          mvn package
-        if: ${{ github.ref == 'refs/heads/main' }}
-
-      - name: Karavan installer (upload)
-        uses: actions/upload-artifact@v3
-        with:
-          name: karavan-installer.jar
-          path: 
./karavan/karavan-web/karavan-installer/target/karavan-installer-${{ env.TAG 
}}.jar
-        if: ${{ github.ref == 'refs/heads/main' }}
\ No newline at end of file

Reply via email to