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 6fc3becd Fix #883 6fc3becd is described below commit 6fc3becd7251130050ce635c67e05977e0609bcd Author: Marat Gubaidullin <ma...@talismancloud.io> AuthorDate: Thu Sep 7 10:05:36 2023 -0400 Fix #883 --- .github/workflows/builder.yaml | 35 ----------------------------------- .github/workflows/runner.yaml | 35 ----------------------------------- 2 files changed, 70 deletions(-) diff --git a/.github/workflows/builder.yaml b/.github/workflows/builder.yaml deleted file mode 100644 index e07e4c62..00000000 --- a/.github/workflows/builder.yaml +++ /dev/null @@ -1,35 +0,0 @@ -name: builder image - -on: - push: - branches: [ main ] - workflow_dispatch: - -env: - REGISTRY: ghcr.io - IMAGE_NAME: ${{ github.repository }}-builder - TAG: 3.21.0 - -jobs: - build: - - runs-on: ubuntu-latest - - steps: - - name: Checkout repository - uses: actions/checkout@v3 - - - name: Log in to the Container registry - uses: docker/login-action@v2 - with: - registry: ${{ env.REGISTRY }} - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} - - - name: Build and push Docker image - uses: docker/build-push-action@v3 - with: - context: . - file: karavan-builder/Dockerfile - push: true - tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ env.TAG }} \ No newline at end of file diff --git a/.github/workflows/runner.yaml b/.github/workflows/runner.yaml deleted file mode 100644 index e08894a8..00000000 --- a/.github/workflows/runner.yaml +++ /dev/null @@ -1,35 +0,0 @@ -name: runner image - -on: - push: - branches: [ main ] - workflow_dispatch: - -env: - REGISTRY: ghcr.io - IMAGE_NAME: ${{ github.repository }}-runner - TAG: 3.21.0 - -jobs: - build: - - runs-on: ubuntu-latest - - steps: - - name: Checkout repository - uses: actions/checkout@v3 - - - name: Log in to the Container registry - uses: docker/login-action@v2 - with: - registry: ${{ env.REGISTRY }} - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} - - - name: Build and push Docker image - uses: docker/build-push-action@v3 - with: - context: ./karavan-runner - file: karavan-runner/Dockerfile - push: true - tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ env.TAG }} \ No newline at end of file