From 7f3b4031b196794cdf7a41fc2b2bad89b03b92fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20B=C3=B6hmer?= Date: Tue, 27 Aug 2019 17:48:55 +0200 Subject: [PATCH] Delete main.workflow --- .github/main.workflow | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 .github/main.workflow diff --git a/.github/main.workflow b/.github/main.workflow deleted file mode 100644 index 2b51c111..00000000 --- a/.github/main.workflow +++ /dev/null @@ -1,29 +0,0 @@ -workflow "Build, Test, and Publish" { - on = "push" - resolves = [ - "Install Composer dependencies", - "Build frontent code.", - "Install frontend depencies.", - ] -} - -action "Install frontend depencies." { - uses = "nuxt/actions-yarn@master" - args = "install" -} - -action "Compile Assets" { - uses = "nuxt/actions-yarn@master" - args = "encore production" -} - -action "Build frontent code." { - uses = "nuxt/actions-yarn@master" - args = "run build" - needs = ["Install frontend depencies."] -} - -action "Install Composer dependencies" { - uses = "pxgamer/composer-action@master" - args = "install -a" -}