From da53dab766c3d01bd4c8f06d1ab9184305a1eb31 Mon Sep 17 00:00:00 2001 From: Sidharth Vinod Date: Thu, 14 Jan 2021 17:54:12 +0530 Subject: [PATCH] CI Test --- .github/workflows/beta-deploy.yml | 2 +- .github/workflows/deploy.yml | 27 +++++++++++++++++++++++++++ 2 files changed, 28 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/deploy.yml diff --git a/.github/workflows/beta-deploy.yml b/.github/workflows/beta-deploy.yml index 93c8dbcd..fbfe5d03 100644 --- a/.github/workflows/beta-deploy.yml +++ b/.github/workflows/beta-deploy.yml @@ -3,7 +3,7 @@ on: push: branches: - master - - citest + # - citest jobs: build: runs-on: ubuntu-latest diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 00000000..df4a575a --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,27 @@ +name: Beta Deploy +on: + push: + branches: + - release + - citest +jobs: + build: + runs-on: ubuntu-latest + steps: + + - name: Checkout + uses: actions/checkout@v2 + + - uses: actions/setup-node@v2 + with: + node-version: '12' + + - run: | + npm i -g yarn + yarn install + yarn release + git config --global user.name github-actions + git config --global user.email github-actions@github.com + git commit -am "Release" + git push + \ No newline at end of file