This commit is contained in:
Sidharth Vinod
2021-01-14 17:54:12 +05:30
parent 9396ed376b
commit da53dab766
2 changed files with 28 additions and 1 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ on:
push:
branches:
- master
- citest
# - citest
jobs:
build:
runs-on: ubuntu-latest
+27
View File
@@ -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