From 9efd629bdb416989972e7d027a45983227937b99 Mon Sep 17 00:00:00 2001 From: Wassim Chegham <1699357+manekinekko@users.noreply.github.com> Date: Fri, 1 Mar 2019 01:50:35 +0100 Subject: [PATCH] build: remove release action from github actions --- .github/main.workflow | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/.github/main.workflow b/.github/main.workflow index 1290cf1c5..d1277168b 100644 --- a/.github/main.workflow +++ b/.github/main.workflow @@ -3,7 +3,7 @@ workflow "Auto Release" { "Install dependencies", "Lint", "Test", - "Release", + "Deploy", ] on = "release" } @@ -55,10 +55,3 @@ action "Deploy" { secrets = ["FIREBASE_TOKEN", "PROJECT_ID"] args = "deploy" } - -action "Release" { - uses = "actions/npm@59b64a598378f31e49cb76f27d6f3312b582f680" - needs = ["Deploy"] - args = "run release" - secrets = ["GITHUB_TOKEN"] -}