Skip to content

3.2.4

3.2.4 #198

Workflow file for this run

name: Deploy cids
on:
release:
types: [created]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '14.x'
registry-url: 'https://registry.npmjs.org'
- run: |
cd cids
sed -i -e 's/$version/'${GITHUB_REF##*/}'/g' package.json
cat package.json
npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}