Skip to content

Merge pull request #24 from coinsambacom/fix/isistrade-null-response #67

Merge pull request #24 from coinsambacom/fix/isistrade-null-response

Merge pull request #24 from coinsambacom/fix/isistrade-null-response #67

Workflow file for this run

name: Release
on:
push:
tags:
- v*
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# - run : npm ci --ignore-scripts
- name: Install packages
run: yarn
- name: Publish to npm
run: |
npm config set //registry.npmjs.org/:_authToken ${NPM_TOKEN}
npm publish --ignore-scripts
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}