Skip to content

@ethersphere/gateway-proxy v0.11.0 #16

@ethersphere/gateway-proxy v0.11.0

@ethersphere/gateway-proxy v0.11.0 #16

Workflow file for this run

# After new release is published on github, publish it to npmjs
name: Publish on npmjs
on:
release:
types: [published]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 14
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}