Skip to content

Merge pull request #104 from thepower/revert-103-feat/new_abi_coder #183

Merge pull request #104 from thepower/revert-103-feat/new_abi_coder

Merge pull request #104 from thepower/revert-103-feat/new_abi_coder #183

Workflow file for this run

name: autodeploy
on:
push:
branches: [master]
env:
CI: true
jobs:
publish-gpr:
name: Publish to GPR
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set Git User
run: |
git config --global user.name "Power DCloud"
git config --global user.email "[email protected]"
- uses: actions/setup-node@v3
with:
node-version: '16.x'
registry-url: 'https://registry.npmjs.org'
- name: Bootstrap lerna
run: yarn lerna:init
- name: Bump versions and publish packages
run: |
yarn version:ci
yarn publish:ci
env:
NODE_AUTH_TOKEN: ${{ secrets.NPMTOKEN }}
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}