You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2020/10/12 10:00:49 UTC

[camel] branch regen_bot updated (779b226 -> 9084d3e)

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

acosentino pushed a change to branch regen_bot
in repository https://gitbox.apache.org/repos/asf/camel.git.


    from 779b226  Regen for commit 4d5977f279a5641ba6c202a20cdb60cdf46451c4
     new 1613435  GH Action: Run the deploy action also on 3.4.x
     new 2fb4911  Deploy GH Action: add trigger on workflow_dispatch
     new 9084d3e  Deploy gh action: No need for 3.4.x branch

The 3 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.


Summary of changes:
 .github/workflows/asf-snapshots-deploy.yml | 1 +
 1 file changed, 1 insertion(+)


[camel] 01/03: GH Action: Run the deploy action also on 3.4.x

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

acosentino pushed a commit to branch regen_bot
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 1613435e735e121bb4244e34e5b4fba6ee8ca198
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Oct 12 11:33:14 2020 +0200

    GH Action: Run the deploy action also on 3.4.x
---
 .github/workflows/asf-snapshots-deploy.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/asf-snapshots-deploy.yml b/.github/workflows/asf-snapshots-deploy.yml
index ce88160..ab8bdbb 100644
--- a/.github/workflows/asf-snapshots-deploy.yml
+++ b/.github/workflows/asf-snapshots-deploy.yml
@@ -43,7 +43,7 @@ jobs:
   deploy:
     runs-on: ubuntu-latest
     needs: build
-    if: github.ref == 'refs/heads/master'
+    if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/camel-3.4.x'
     env:
       NEXUS_DEPLOY_USERNAME: ${{ secrets.NEXUS_USER }}
       NEXUS_DEPLOY_PASSWORD: ${{ secrets.NEXUS_PW }}


[camel] 03/03: Deploy gh action: No need for 3.4.x branch

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

acosentino pushed a commit to branch regen_bot
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 9084d3e7affcc6676ba04d20888a6522e1f0bbbb
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Oct 12 11:43:26 2020 +0200

    Deploy gh action: No need for 3.4.x branch
---
 .github/workflows/asf-snapshots-deploy.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/asf-snapshots-deploy.yml b/.github/workflows/asf-snapshots-deploy.yml
index fab4fbb..898297a 100644
--- a/.github/workflows/asf-snapshots-deploy.yml
+++ b/.github/workflows/asf-snapshots-deploy.yml
@@ -44,7 +44,7 @@ jobs:
   deploy:
     runs-on: ubuntu-latest
     needs: build
-    if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/camel-3.4.x'
+    if: github.ref == 'refs/heads/master'
     env:
       NEXUS_DEPLOY_USERNAME: ${{ secrets.NEXUS_USER }}
       NEXUS_DEPLOY_PASSWORD: ${{ secrets.NEXUS_PW }}


[camel] 02/03: Deploy GH Action: add trigger on workflow_dispatch

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

acosentino pushed a commit to branch regen_bot
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 2fb491148ba25562d8d70712c65ea8530cd8d525
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Oct 12 11:39:25 2020 +0200

    Deploy GH Action: add trigger on workflow_dispatch
---
 .github/workflows/asf-snapshots-deploy.yml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.github/workflows/asf-snapshots-deploy.yml b/.github/workflows/asf-snapshots-deploy.yml
index ab8bdbb..fab4fbb 100644
--- a/.github/workflows/asf-snapshots-deploy.yml
+++ b/.github/workflows/asf-snapshots-deploy.yml
@@ -20,6 +20,7 @@ on:
   schedule:
     # Run at 2 during night
     - cron:  '0 2 * * *'
+  workflow_dispatch:
 
 jobs:
   build: