You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by zr...@apache.org on 2019/05/02 20:41:19 UTC

[camel-website] branch master updated: chore: disable GitHub actions

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

zregvart pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-website.git


The following commit(s) were added to refs/heads/master by this push:
     new 08b1474  chore: disable GitHub actions
08b1474 is described below

commit 08b14747b31b8ea5481bbce2623f18d04df50bbb
Author: Zoran Regvart <zr...@apache.org>
AuthorDate: Thu May 2 22:41:16 2019 +0200

    chore: disable GitHub actions
    
    Let's disable GitHub actions until we solidify the implementation.
---
 .github/main.workflow | 31 -------------------------------
 1 file changed, 31 deletions(-)

diff --git a/.github/main.workflow b/.github/main.workflow
deleted file mode 100644
index e0360e5..0000000
--- a/.github/main.workflow
+++ /dev/null
@@ -1,31 +0,0 @@
-workflow "Build and publish the website" {
-  on = "push"
-  resolves = ["Publish"]
-}
-
-action "Build theme" {
-  uses = "./.github/action-website"
-  runs = "yarn"
-  args = "--non-interactive --frozen-lockfile --cwd antora-ui-camel"
-}
-
-action "Build website" {
-  uses = "./.github/action-website"
-  needs = ["Build theme"]
-  runs = "yarn"
-  args = "--non-interactive --frozen-lockfile"
-}
-
-action "On master branch" {
-  uses = "actions/bin/filter@d820d56839906464fb7a57d1b4e1741cf5183efa"
-  needs = ["Build website"]
-  args = "branch master"
-}
-
-action "Publish" {
-  uses = "./.github/action-website"
-  needs = ["On master branch"]
-  runs = "publish"
-  secrets = ["GITHUB_TOKEN"]
-}
-