Skip to content

Dont await to write cache in disk to respond to client #92

Dont await to write cache in disk to respond to client

Dont await to write cache in disk to respond to client #92

name: publish-prerelease:npm
on:
push:
branches-ignore:
- '**'
tags:
- 'v[0-9]+.[0-9]+.[0-9]+-beta*'
jobs:
npm-publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12
registry-url: https://registry.npmjs.org/
- run: yarn install --ignore-scripts
- run: yarn ci:build
- run: npm publish --tag beta
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
IS_CI: true