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